I want to use a debugger to step through the code of an open-source, public Nuget package that my project references. My understanding is that if the package publishes a symbol package I should be able to do this.
It's not working, and I can see that it's because the .pdb file can not be located:
Presumably this is because either:
a) I haven't correctly set up Visual Studio to load symbols from the right place (the info online about this is all very confusing and contradictory), or...
b) The package in question doesn't publish a symbols package.
How do I check if b is the issue? Is there an easy way to check if a symbol package has been published for a given NuGet package?