I'm using CruiseControl.NET and devenv within the ccnet.config to automate the build of a VS 2005 .NET solution. The solution contains references to several projects, which are dependent on each other as well as a Library folder which contains third party dll's and other dll's compiled from projects I've created.
The problem I'm having is trying to setup my ccnet.config file to get the latest updates of each of the projects within the .NET sln file and Library folder from SVN before it begins the devenv task.
Can someone help or point me in the right direction as I can't seem to find anything on the web?
Below is my ccent.config file, I'm using PreProcessor's to avoid repetition as I will be reusing this for other solution files that are of similar structure:
<cruisecontrol xmlns:cb="urn:ccnet.config.builder">
<cb:define MainTrunk="svn://mySvnUrl"/>
<cb:define WorkingDir="C:\Svn\"/>
<cb:define SvnExec="C:\Program Files\CollabNet Subversion Client\svn.exe"/>
<cb:define ArtifactsDir="\Artifacts"/>
<cb:define name="MyProjectName">
<project name="$(ProjectName)"
description="$(ProjectName) build">
<triggers>
<!-- check the source control every X time for changes,
and run the tasks if changes are found -->
<intervalTrigger
name="continuous"
seconds="500"
buildCondition="IfModificationExists"
initialSeconds="5"/>
</triggers>
<sourcecontrol type="svn">
<trunkUrl>$(MainTrunk)/$(ProjectName)/trunk</trunkUrl>
<workingDirectory>$(WorkingDir)$(ProjectName)</workingDirectory>
<executable>$(SvnExec)</executable>
</sourcecontrol>
<tasks>
<devenv>
<solutionfile>$(WorkingDir)$(ProjectName)\$(ProjectName).sln</solutionfile>
<configuration>Debug</configuration>
<executable>C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.com</executable>
<!--<buildTimeoutSeconds>10</buildTimeoutSeconds>-->
</devenv>
</tasks>
<publishers>
<xmllogger />
<artifactcleanup cleanUpMethod="KeepLastXBuilds"
cleanUpValue="50" />
</publishers>
</project>
</cb:define>
<cb:scope ProjectName="ProjectA">
<cb:MyProjectName/>
</cb:scope>
</cruisecontrol>
UPDATE: After asking the question, I started thinking that perhaps the way to tackle this is to check for modifications on the dependent projects and if there is a change, to then trigger the build of the VS solution file - ProjectA. So I've since updated my ccnet.config accordingly (see below). I will then apply this for the dependent projects within my VS sln as well.
Would still appreciate if someone could take a look and let me know if I am going in the right direction.
<cruisecontrol xmlns:cb="urn:ccnet.config.builder">
<!-- This is your CruiseControl.NET Server Configuration file. Add your projects below! -->
<cb:define MainTrunk="svn://SvnUrl"/>
<cb:define WorkingDir="C:\Svn\"/>
<cb:define SvnExec="C:\Program Files\CollabNet Subversion Client\svn.exe"/>
<cb:define ArtifactsDir="\Artifacts"/>
<cb:define name="MyProjectName">
<project name="$(ProjectName)"
description="$(ProjectName) build">
<triggers>
<projectTrigger project="Libraries">
<triggerStatus>Success</triggerStatus>
<innerTrigger type="intervalTrigger"
seconds="120"
buildCondition="ForceBuild" />
</projectTrigger>
</triggers>
<sourcecontrol type="svn">
<trunkUrl>$(MainTrunk)/$(ProjectName)/trunk</trunkUrl>
<workingDirectory>$(WorkingDir)$(ProjectName)</workingDirectory>
<executable>$(SvnExec)</executable>
</sourcecontrol>
<tasks>
<devenv>
<solutionfile>$(WorkingDir)$(ProjectName)\$(ProjectName).sln</solutionfile>
<configuration>Debug</configuration>
<executable>C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.com</executable>
<!--<buildTimeoutSeconds>10</buildTimeoutSeconds>-->
</devenv>
</tasks>
<publishers>
<xmllogger />
<artifactcleanup cleanUpMethod="KeepLastXBuilds"
cleanUpValue="50" />
</publishers>
</project>
</cb:define>
<cb:scope ProjectName="ProjectA">
<cb:MyProjectName/>
</cb:scope>
<project name="Libraries">
<triggers>
<intervalTrigger name="continuous" seconds="60" buildCondition="IfModificationExists" initialSeconds="5"/>
</triggers>
<sourcecontrol type="svn">
<trunkUrl>svn://SvnUrl/Libraries</trunkUrl>
<workingDirectory>C:\Svn\Libraries</workingDirectory>
<executable>C:\Program Files\CollabNet Subversion Client\svn.exe</executable>
</sourcecontrol>
</project>
</cruisecontrol>