我有一个项目,有一个后期构建事件,可以将DLL复制到某个目录:
xcopy "$(TargetDir)$(TargetName).dll" "$(SolutionDir)..\UdpLocationService\bin\Plugins\" /d /y xcopy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)..\UdpLocationService\bin\Plugins\" /d /y
但是,我将CruiseControl.NET设置为构建服务器,并且由于此xcopy构建后事件,MSBuild无法构建该项目:
MSB3073: The command "xcopy "C:\Build\Services\Windows\VehicleServer\Plugins\Payload\bin\Debug\Payload.dll" "*Undefined*..\UdpLocationService\bin\Plugins\" /d /y xcopy "C:\Build\Services\Windows\VehicleServer\Plugins\Payload\bin\Debug\Payload.pdb" "*Undefined*..\UdpLocationService\bin\Plugins\" /d /y" exited with code 4. in Microsoft.Common.targets(3397, 13)
有任何建议来解决这个问题吗?
我刚刚遇到与TeamCity相同的问题.
这里的问题是构建文件中的$(SolutionDir)属性.你没有在调用MsBuild时定义它(这就是为什么你在输出中看到单词undefined的原因).
使用属性集调用msbuild,如下所示:
msbuild myproject.csproj /property:SolutionDir="solution directory"\
"解决方案目录"是包含解决方案文件的目录.请注意尾部斜杠,您需要确保正确形成路径.
我通过添加以下内容解决了Microsoft.SqlServer.Compact nuget包(添加类似的构建后脚本)的问题.
..\
正上方
.您需要调整相对路径以匹配项目布局.