Skip to content

Instantly share code, notes, and snippets.

@stevetalkscode
Created June 4, 2021 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevetalkscode/45d1755611d3f463bf30ca53ab5af7ec to your computer and use it in GitHub Desktop.
Save stevetalkscode/45d1755611d3f463bf30ca53ab5af7ec to your computer and use it in GitHub Desktop.
DebugSourceGen.cs
public void Initialize(GeneratorInitializationContext context)
{
#if DEBUGGENERATOR
if (!Debugger.IsAttached)
{
Debugger.Launch();
}
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment