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:
public override bool Execute()
{
System.Diagnostics.Debugger.Break();
And added a break point on that line... I even eliminated all the other code in the method and that didn't change anything.
Is there anything special required to be able to debug the creation of custom tasks for MSBuild ?