Given I am using framework via a NuGet package on my C# project inside Visual Studio and the source code for the framework/NuGet package is available e.g. on Github. How could I add the source code to Visual Studio, so I can browse it?
E.g. I write my own class deriving from a framework base class:
public MyClass : FrameworkClass
It compiles fine as all needed for that is given by the NuGet package. But in addition I now also want to be able to view the FrameworkClass implementation from inside Visual Studio.
Is that somehow possible, given the source code is available e.g. on Github? (it's ok for me to manually download the source code from Github and add it to Visual Studio in addition to the nuGet package, I just don't know if and how that can be done)