I am using a NuGet package in an internal project. (The NuGet package is EPPlus, fwiw.)
Is there a way to configure Visual Studio to allow debug step into the NuGet package?
I'm using VS Community Edition 2019 (v16.2.0), and the EPPlus NuGet package (v4.5.3.2)
I've found a number of posts about how to clonethe NuGet package and then either rebuild it from scratch, or include it in an existing VS project, and then trace into it, but that is not generally useful. (And can be a rathole unless the NuGet project is well maintained and well designed.)
I'm looking for something closer to how debug symbol files can be installed to allow stepping into Windows API code.
Is there something similar for refernced NuGet packages? Is it as simple as asking the NuGet package maintainer to checking the pdb files along with their source?