edumentab / SourceGenerator-MediatR-CQRS

This is the repository for the .NET 5 Source Generators - MediatR - CQRS - OMG! blog post

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to debug this project?

akinix opened this issue · comments

i want to debug the SourceGenerator.csproj project.

If you want debug a source code generator you can found instruction on:
https://nicksnettravels.builttoroam.com/debug-code-gen/

@akinix
add code this; inside method Initialize()

#if DEBUG if (!Debugger.IsAttached) { Debugger.Launch(); } #endif