edumentab / SourceGenerator-MediatR-CQRS

This is the repository for the .NET 5 Source Generators - MediatR - CQRS - OMG! blog post
Apache License 2.0
73 stars 15 forks source link

how to debug this project? #1

Open akinix opened 3 years ago

akinix commented 3 years ago

i want to debug the SourceGenerator.csproj project.

ucollina82 commented 3 years ago

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

ngnam commented 3 years ago

@akinix add code this; inside method Initialize()

`

if DEBUG

        if (!Debugger.IsAttached)
        {
            Debugger.Launch();
        }

endif

`