Search code examples
visual-studio-2019roslynvspackage

Is it possible to step through Roslyn code in a Visual Studio package


I am using Roslyn in my Visual Studio Package. I have the source code of Roslyn from github, so I can look at the internal workings.

Is there any way that I can get debug information and step into the Roslyn code when debugging my Visual Studio Package?


Solution

  • you could try using SourceLink. it's included in Visual Studio, and you can enable it by following this guide.