Skip to content

Instantly share code, notes, and snippets.

@Zetrith
Created March 4, 2026 17:03
Show Gist options
  • Select an option

  • Save Zetrith/70ae7a8390f085b482d7a4cee38bdde7 to your computer and use it in GitHub Desktop.

Select an option

Save Zetrith/70ae7a8390f085b482d7a4cee38bdde7 to your computer and use it in GitHub Desktop.
MSBuild task for launching a debugger within a build
<UsingTask
TaskName="LaunchDebugger"
TaskFactory="RoslynCodeTaskFactory"
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll" >
<Task>
<Using Namespace="System.Diagnostics" />
<Code Type="Fragment" Language="cs">
<![CDATA[
Debugger.Launch();
]]>
</Code>
</Task>
</UsingTask>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment