Cruise control .NET 4.0 MSBUILD Logger

Has anyone got an MSBuild task in Cruise Control to load a recorder?

I tried the options, but it always does not load the recorder.

C: \ Windows \ Microsoft.NET \ Framework \ v4.0.30319 \ MSBuild.exe C: \ Windows \ Microsoft.NET \ Framework \ v4.0.30319 C: \ builds \ MVC2Test \ trunk \ MVC2Test \ MVC2Test.sln / noconsolelogger / p : Configuration = CruiseControl / v: diag build 15 ThoughtWorks.CruiseControl.MsBuild.XmlLogger, C: \ Program Files (x86) \ CruiseControl.NET \ server \ ThoughtWorks.CruiseControl.MsBuild.dll

Please post only the .NET 4.0 example, if possible.

thank

+5
source share
1 answer

.NET 4.0 Cruise Control.NET :

1) 64- MSBuild, ... 32- .

2) , , .

3) VS 2010.\WCU\MTPack\NetFx_DTP.msi EXTUI = 1/log install.log

4) MSBuild .

5) ,

<msbuild>
    <!-- WARNING:  You must copy the files from C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplications to the same path on your build server -->
    <executable>C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe</executable>
    <workingDirectory>C:\builds\SOLUTIONFOLDER\trunk\</workingDirectory>
    <projectFile>C:\builds\SOLUTIONFOLDER\trunk\SOLUTIONNAME.sln</projectFile>
    <buildArgs>/noconsolelogger /p:Configuration=CruiseControl /v:diag</buildArgs>
    <targets>Build</targets>
    <timeout>15</timeout>
    <logger>C:\CruiseControl\server\ThoughtWorks.CruiseControl.MSBuild.dll</logger>
</msbuild>

, Microsoft MSTest ... 5 , Microsoft ?

.

+7

All Articles