Here you go:
<cruisecontrol xmlns:cb="urn:ccnet.config.builder">
<!-- This is your CruiseControl.NET Server Configuration file. Add
your projects below! -->
<project name="Framework" >
<workingDirectory>c:\SVN\CI\Framework\</workingDirectory>
<artifactDirectory>c:\SVN\CI\Artifacts.Framework</artifactDirectory>
<webURL>http://localhost:81/ccnet</webURL>
<triggers>
<intervalTrigger initialSeconds="0" />
</triggers>
<sourcecontrol type="svn">
<trunkUrl>file:///C:/SVN/repository/Framework</trunkUrl>
<executable>C:\Program Files\SlikSvn\bin\svn.exe</executable>
<username>hestrada</username>
<password></password>
</sourcecontrol>
<tasks>
<msbuild>
<executable>
C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
</executable>
<projectFile>Framework.sln</projectFile>
<buildArgs>/p:Configuration=Release /verbosity:minimal </buildArgs>
<logger>C:\Program Files\CruiseControl.NET\server
\ThoughtWorks.CruiseControl.MSBuild.dll</logger>
</msbuild>
</tasks>
</project>
<project name="WindowsCalculator" >
<workingDirectory>C:\SVN\CI\WindowsCalculator</workingDirectory>
<artifactDirectory>C:\SVN\CI\WindowsCalculator.Artifacts</
artifactDirectory>
<webURL>http://localhost:81/ccnet</webURL>
<triggers>
<intervalTrigger initialSeconds="0" />
<projectTrigger project="Framework">
<triggerStatus>Success</triggerStatus>
</projectTrigger>
</triggers>
<sourcecontrol type="svn">
<trunkUrl>file:///svn/repository/WindowsCalculator</trunkUrl>
<executable>C:\Program Files\SlikSvn\bin\svn.exe</executable>
<username>hestrada</username>
<password></password>
</sourcecontrol>
<tasks>
<msbuild>
<executable>
C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
</executable>
<projectFile>WindowsCalculator.sln</projectFile>
<buildArgs>/p:Configuration=Release /verbosity:minimal </buildArgs>
<logger>C:\Program Files\CruiseControl.NET\server
\ThoughtWorks.CruiseControl.MSBuild.dll</logger>
</msbuild>
</tasks>
</project>
</cruisecontrol>
On Sep 4, 5:22 am, Ruben Willems <[email protected]> wrote:
> Hi
>
> can you post the config of your project from ccnet.config
>
> with kind regards
> Ruben Willems
>
> On Fri, Sep 3, 2010 at 12:47 AM, Hugo Estrada <[email protected]> wrote:
> > Hi,
>
> > I am trying to set up a server, and it seems that it is working, but
> > on the command line output I keep getting this error:
>
> > "Unable to save integration result: ThoughtsWorks.CruiseControl.Core.
> > CruiseControl.Exception: Unable to save the IntegrationResult to the
> > specified directory: C:\Program Files\CruiseControl.Net\server
> > \Framework.state"
>
> > I suspect that I am missing a configuration value, but I don't know
> > which. How can I fix this?
>
> > Thanks in advance,
>
> > Hugo
>
>