$(OutDir) = \bin\Release (in local with VS2012)
$(OutDir) = C:\\...\BuildDefinition\Binaries (on TFS2010 Team Build)
如何在 Pre-build 事件中编写在这两种情况下都有效的 XCOPY?
在我的 project2 中,我引用了 project1。所以我需要这样做:
在本地:
XCOPY /Y $(SolutionDir)Project1\$(OutDir)Project1.dll"
"$(SolutionDir)MyProject2\Objects\Assemblies"
关于团队建设
XCOPY /Y "$(OutDir)Project1.dll" "$(SolutionDir)Project2\Objects\Assemblies"
谢谢你。