I'm using Visual Studio 2017, .NET 4.6.2, C# 6.0 and Newtonsoft.Json 11.0.2.
I tried loading the symbols so I can step through the code, but neither of the following approaches works:
- I tried adding "https://nuget.smbsrc.net" (with and without a trailing slash) as a symbol server, but VS says it can't find any symbols there.
- I downloaded the entire Newtonsoft.Json code, built the solution (after having to unload the Newtonsoft.Json.Tests and Newtonsoft.Json.TestConsole projects, because I couldn't get rid of the errors) and tried to direct VS to the .pdb file in ...Newtonsoft.Json-master\Src\Newtonsoft.Json\bin\Debug\net45, but VS wouldn't accept that either.
Can anyone provide a step-by-step tutorial explaining how to integrate the symbols so I can step through the code?