How can I get symbols for the Asp.NET core nuget packages?
I have checked symbolsource.org, but cannot find any aspnetcore symbol packages there, despite knowing that the symbols are actually generated (at least for AspNetCore.Auth) in the NuGet builds. Other than that, I have followed the guides on http://www.symbolsource.org/Public/Home/VisualStudio . I know symbols are on https://dotnet.myget.org for the master-branch, but that only provides version 1.0.0, and I'm running a later version. They are lacking for everything else, including the official nuget.org release.
So far I have compiled and installed the microsoft.aspnetcore.authentication NuGet packages myself, and have pointed Visual Studio to the local Build-directory to find the symbols. It has been necessary to override my local project settings with my own compiled nugets in order to get the pdb symbols file to match the dll's too. Having to do this will all the sub-projects of aspnetcore seems pretty crazy -- all I want is to be able to debug through the aspnetcore code. I can of course download and reference the entirety of the aspnetcore source, with its 10 or so git repos and various build scripts -- I'm just checking that this is really necessary?
So:
- Is there a way to get Visual Studio 2017 to load symbols/sources for official aspnet core nuget packages?
- If so, how?
- If not, is it planned?