0

My cruisecontrol runs two nant scripts and it builds by using msbuild. Msbuild is failing without giving any errors. Is there any way to get more error details? Below is how I have configured publishers.

<publishers>
            <email from="cruise@xx..com.au" mailhost="stat-server" includeDetails="TRUE">
                <users>
....
</users>
CharithJ
  • 46,289
  • 20
  • 116
  • 131

2 Answers2

2

I can view the CruiseControl.net Build log through the web application "View Build Log" link. It gives all the details of the build process.

CharithJ
  • 46,289
  • 20
  • 116
  • 131
1

I normally start of running the build scripts from the command line on your build server.

You can also run MSBuild with a verbosity switch, that increase the amount of debug information. That will at least give you a idea of where the problem lies, perhaps your cruise control server is fine.

msbuild.exe <buildFile.msbuild> /v:d
Rihan Meij
  • 1,759
  • 1
  • 14
  • 18