Recorder for devenv CruiseControl

Is there a registrar for devenv? I have a devenv task in cruiseControl.net, but it does not give me any logs. I don’t even see the reason for the build to fail. I used logger in msbuild to view the log.

<msbuild>
......
<logger>C:\Program Files (x86)\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MSBuild.dll</logger>
</msbuild>

Is there something similar for devvenv build tasks? Evaluate if someone can give an example.

Thank!

+3
source share
2 answers

Here are all the devenv commands you are looking for.

http://msdn.microsoft.com/en-us/library/xee0c8y7(v=vs.80).aspx

-1
source

Wrap devenv.com is not .exe to get the log in stdout:

<Exec Command="&quot;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\DEVENV.com&quot; $(BiztalkSLN) /build &quot;Debug|AnyCpu&quot;"/>
0
source

All Articles