需要在VS 2010项目中编写一个post build事件,只将dll和pdb复制到.... \ MainProject \ Debug
由于某些原因,我无法解释输出路径不起作用。没有写入。以前。
我该怎么办? 非常感谢
答案 0 :(得分:2)
也许您已将Run the post-build event
设置为When the build updates the project output
?
答案 1 :(得分:1)
VS 2010中的MSBuild支持更好的方式来连接事件前/后事件:
<Target Name="StartDeployAdditionalDependencies" AfterTargets="Build">
<!-- ... Do stuff ... -->
</Target>
有关详细信息,请参阅以下内容:
http://blogs.msdn.com/b/msbuild/archive/2010/02/18/build-extensibility-with-net-framework-4.aspx