How to debug MSBuild Customtask - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:18:52Z http://stackoverflow.com/feeds/question/357445 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/357445/how-to-debug-msbuild-customtask 0 How to debug MSBuild Customtask CheGueVerra 2008-12-10T20:13:56Z 2008-12-11T21:49:13Z <p>I'm trying to debug the MSBuild Customtask, that I have just created, but for some reason it never stops at the breakpoint. I've even tried this:</p> <pre><code> public override bool Execute() { System.Diagnostics.Debugger.Break(); </code></pre> <p>And added a break point on that line... I even eliminated all the other code in the method and that didn't change anything.</p> <p>Is there anything special required to be able to debug the creation of custom tasks for MSBuild ?</p> http://stackoverflow.com/questions/357445/how-to-debug-msbuild-customtask/357544#357544 2 Answer by Joel Martinez for How to debug MSBuild Customtask Joel Martinez 2008-12-10T20:42:55Z 2008-12-10T20:42:55Z <p>It's a bit of a hack, but you could always just put this line of code wherever it is that you want to start debugging:</p> <pre><code>System.Diagnostics.Debugger.Launch(); </code></pre> <p>When you invoke it, the CLR will launch a dialog asking you what debugger you want to attach.</p> http://stackoverflow.com/questions/357445/how-to-debug-msbuild-customtask/361108#361108 2 Answer by Gavin for How to debug MSBuild Customtask Gavin 2008-12-11T21:49:13Z 2008-12-11T21:49:13Z <p>This is what I do... In the Project Properties dialog on the Debug Tab Select "Start an External App" - put C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe in the box..</p> <p>Then in the command line parms, put your arguments /Target:Whatever test.proj</p> <p>Put a code stop in your custom task and start the app..</p>