Trying this again...
I've recently updated to 1.5.7256.1 and am unable to get the msbuild
logger to output its xml file. Here's my tasks and publishers
sections:
<tasks>
<msbuild>
<executable>C:\Windows\Microsoft.NET\Framework
\v4.0.30319\MSBuild.exe</executable>
<workingDirectory>E:\ccnetWorking\Projects\trunk</
workingDirectory>
<projectFile>build.proj</projectFile>
<buildArgs>/noconsolelogger /p:Configuration=Debug /v:diag</
buildArgs>
<targets>Build</targets>
<timeout>900</timeout>
<logger>C:\Program Files\CruiseControl.NET\server
\ThoughtWorks.CruiseControl.MSBuild.dll</logger>
</msbuild>
</tasks>
<publishers>
<merge>
<files>
<!-- <file>E:\ccnetWorking\buildFiles\Artifacts\*-
results.xml</file> -->
<file>E:\ccnetWorking\buildFiles\Artifacts\report.xml</file>
</files>
</merge>
<xmllogger />
<statistics />
</publishers>
I added the statistics publisher to see if it was a permissions issue,
and the report.xml is indeed showing up in the artifacts directory.
But, there's still no msbuild-results.xml file showing up. Any
ideas? I appreciate any guidance.