我在使用vNext版本时遇到了困难。 Visual Studio构建步骤。
每当构建运行的解决方案中的后期构建步骤时,我的解决方案都会失败。它以代码1退出。
我认为命令我很好,它在本地工作正常,并且当visual studio以管理员身份运行时在构建服务器上。
我认为构建代理没有写文件的权限。有什么方法可以修复吗?或者以管理员身份运行此构建步骤?
post build命令如下:
echo POST-BUILD: Building files and copying the components files into host/bin folder
$(ProjectDir)Builder\BuildRules.cmd $(ProjectDir) $(TargetDir) && (IF NOT EXIST $(SolutionDir)..\..\host\Host\bin mkdir $(SolutionDir)..\..\host\Host\bin) && xcopy /F /R /Y $(TargetDir)$(TargetFileName) $(SolutionDir)..\..\host\Host\bin && xcopy /F /R /Y $(TargetDir)Service*Validator1.xsl $(SolutionDir)..\..\host\Host\bin && xcopy /F /R /Y $(TargetDir)Service*Validator2.xsl $(SolutionDir)..\..\host\Host\bin && xcopy /F /R /Y $(TargetDir)Service*Validator3.xsl $(SolutionDir)..\..\host\Host\bin && xcopy /F /R /Y $(TargetDir)Service*Functions.xsl $(SolutionDir)..\..\host\Host\bin && IF "$(BuildUri)"=="" COPY $(SolutionDir)\$(SolutionName)\$(OutDir)\*.xsl $(SolutionDir)\$(SolutionName).UnitTests\bin\$(Configuration)\ /Y
感谢您的帮助!