如何使用构建服务器正确设置多个项目

时间:2015-04-21 11:01:46

标签: c# visual-studio-2010 msbuild tfsbuild sql-server-data-tools

我们有一个wpf解决方案,其中包含所有UI BLL和DAL项目。当我们尝试将SQLProject包含到解决方案中并尝试使用构建服务器发布它时,问题就开始了。

快速浏览一下互联网,我发现我们需要这样的论点 -

/t:Build /t:Publish /p:SqlPublishProfilePath=DatabaseSQL07.publish.xml

这样构建服务器就知道要构建什么,这个提到的发布文件也是默认文件。

现在当门控构建发生时,它喊出来说......

Building the projects in this solution one at a time. To enable parallel build, please add the "/m" switch. 

TF270015: 'MSBuild.exe' returned an unexpected exit code. Expected '0'; actual '1'.

我在这里不明白为什么没有并行构建问题,为什么我们不能按顺序构建项目?我可以将其设置为不查找/ m,因为当我将参数设置为包含'/ m'时,它会抱怨 -

Could not copy the file "C:\....\DEV\Binaries\ProjUI.exe.manifest" because it was not found.

这应该是非常简单的,但我想我错过了一些东西。

任何建议都值得赞赏..

0 个答案:

没有答案