How to debug MSBuild Customtask - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:18:52Zhttp://stackoverflow.com/feeds/question/357445http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/357445/how-to-debug-msbuild-customtask0How to debug MSBuild CustomtaskCheGueVerra2008-12-10T20:13:56Z2008-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#3575442Answer by Joel Martinez for How to debug MSBuild CustomtaskJoel Martinez2008-12-10T20:42:55Z2008-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#3611082Answer by Gavin for How to debug MSBuild CustomtaskGavin2008-12-11T21:49:13Z2008-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>