So, my application consists of 33 projects where more than half have interdependencies. I am using CruiseControl.net 1.6. I can build a single csproj or sln fine, but when I add more tags, it bombs. How can I force build multiple csproj files?sdf
<msbuild>
<executable>c:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe</executable>
<workingDirectory>C:\Program Files\CruiseControl.NET\server\MA_Release</workingDirectory>
<projectFile>WorksFineWith1.sln</projectFile>
<projectFile>ErrorsOutWithMoreThan1.sln</projectFile>
<buildArgs>/noconsolelogger /p:Configuration=Debug</buildArgs>
<logger>C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MSBuild.dll</logger>
<timeout>900</timeout>
</msbuild>
How can I build multiples with one force build?
Use multiple
<msbuild>tasks, you can have as many tasks in a<project>as you need.