Cruise Control.net Ms Build Task setting XML output Name
- by Eric Brown - Cal
We are running version 1.5.6755.1 of CruiseControl.net. Here is our block that executes a build
<!-- MSBuild of Source Code -->
<cb:define name="BuildOneProject-block">
<msbuild>
<executable>C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe</executable>
<!-- Directory where source is -->
<workingDirectory>D:\CC\$(AppName)\Source</workingDirectory>
<!-- Solution file to be built-->
<projectFile>D:\CC\$(AppName)\Source\$(ProjectName)\$(ProjectName).csproj</projectFile>
<buildArgs>/noconsolelogger /p:SolutionName=\$(AppName) /p:SolutionDir=D:\CC\$(AppName)\Source /p:Configuration=$(ReleaseOrDebug) /v:diag</buildArgs>
<targets>Build</targets>
<timeout>900</timeout>
<logger>C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll</logger>
</msbuild>
</cb:define>
When this run it generates a file with a name like..
msbuild-results-5cb1c8fa-1bba-4e97-a0b1-b2bf637308dc.xml
Is there another tag on the MsBuild task that allows me to name the xml file? Is there an argument to the Logger that allows me to specify the name of the xml file?