Step by step guide on how to debug a C# SourceGenerator in Visual Studio 2022
Valid as of 1st March 2022 with Visual Studio 2022 Version 17.1.0.
Source: Github | Roslyn SDK | Support source generator debugging in the new Launch Profiles UI #850
The .NET Compiler Platform SDK must be installed.
- Add a .NET Standard 2.0 class library for your SourceGenerator.
- Set the SourceGenerator projet as Startup project.
- Edit the SourceGenerator project and replace all with:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
<IsRoslynComponent>true</IsRoslynComponent>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.1.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
</Project>
- Save it.
- Add a Console Application project with some examples of code you would like to test the SourceGenerator with.
- Edit the Console Application porject and add a reference to the SourceGenerator this way:
<ItemGroup>
<ProjectReference
Include="..\MySourceGenerator\MySourceGenerator.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false"/>
</ItemGroup>
- Save it.
- Right click on the SourceGenerator project
- Click
Properties
. - Click
Debug
. - Click
Open debug launch profiles UI
. - Click on
Delete
to delete the profile shown. - Click on
Add
- Select
Roslyn component
. - In
Target project
select the Console Application project. - Close the UI.
- Restart Visual Studio 2022.
- In the debug profiles dropdown next to the
Play
button, select your SourceGenerator project. - Put a break point in your SourceGenerator to make sure the debugger stops.
- Click
Play
.
Every time you change your source generator code, you will need to restart Visual Studio, otherwise Rebuilding the target project will not use the new version. This has something to do with Visual Studio caching.
Sources: