Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Don't put the dependency in the CC.NET project settings. You need to control the project build order via the NAnt script. You don't have to build on a solution level, you can build on an individual project level.</p> <pre><code>&lt;target name="Project1" depends="Projects2" description="Builds project 1"&gt; &lt;msbuild&gt; &lt;executable&gt;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe&lt;/executable&gt; &lt;workingDirectory&gt;C:\dev\ccnet&lt;/workingDirectory&gt; &lt;projectFile&gt;CCNet.sln&lt;/projectFile&gt; &lt;buildArgs&gt;/noconsolelogger /p:Configuration=Debug /v:diag&lt;/buildArgs&gt; &lt;targets&gt;Build;Test&lt;/targets&gt; &lt;timeout&gt;900&lt;/timeout&gt; &lt;logger&gt;C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll&lt;/logger&gt; &lt;/msbuild&gt; &lt;/target&gt; &lt;target name="Project2" depends="Projects3" description="Builds project 2"&gt; &lt;msbuild&gt; &lt;executable&gt;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe&lt;/executable&gt; &lt;workingDirectory&gt;C:\dev\ccnet&lt;/workingDirectory&gt; &lt;projectFile&gt;CCNet.sln&lt;/projectFile&gt; &lt;buildArgs&gt;/noconsolelogger /p:Configuration=Debug /v:diag&lt;/buildArgs&gt; &lt;targets&gt;Build;Test&lt;/targets&gt; &lt;timeout&gt;900&lt;/timeout&gt; &lt;logger&gt;C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll&lt;/logger&gt; &lt;/msbuild&gt; &lt;/target&gt; &lt;target name="Project3" description="Builds Project 3"&gt; &lt;msbuild&gt; &lt;executable&gt;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe&lt;/executable&gt; &lt;workingDirectory&gt;C:\dev\ccnet&lt;/workingDirectory&gt; &lt;projectFile&gt;CCNet.sln&lt;/projectFile&gt; &lt;buildArgs&gt;/noconsolelogger /p:Configuration=Debug /v:diag&lt;/buildArgs&gt; &lt;targets&gt;Build;Test&lt;/targets&gt; &lt;timeout&gt;900&lt;/timeout&gt; &lt;logger&gt;C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll&lt;/logger&gt; &lt;/msbuild&gt; &lt;/target&gt; </code></pre> <p>You can run your unit tests on an individual project level, so you shouldn't need to make duplicate runs over multiple projects.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload