Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在 Visual Studio 2012 中有效但在 Visual Studio 2008 中无效的构建后事件,脚本如下:
xcopy "$(SolutionDir)..\ABC\defaultSettings.xml" "$(SolutionDir)$(SolutionName)\$(OutDir)" /Y
我正在使用一个智能设备项目,.Net Compact Framework但我认为它与此无关。
.Net Compact Framework
知道为什么构建后事件不起作用吗?
宏名称似乎正确。也许问题是 .xml 不存在。
看看这篇文章。它解释了如何从构建后事件失败中获得更有意义的消息。
您也可以尝试去掉引号并改用 Copy 命令。