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

79 views Asked by At

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?

1

There are 1 answers

1
Alenros On BEST ANSWER

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