2
  • I have setup https://nuget.smbsrc.net/ as a symbol file location in VS2015 and also followed the insructions on symbolsource.org
  • In the "Modules" window, while debugging, I right-click on a DLL that was installed via a NuGet package for which I know a symbol package has been published for. I can verify this using

nuget list OBeautifulCode.AutoFakeItEasy -prerelease -source https://nuget.smbsrc.net/

  • I click on 'Symbol Load Information'
  • I see the following at the bottom of the text box

SYMSRV: https://nuget.smbsrc.net/: not available

https://nuget.smbsrc.net/: Symbols not found on symbol server.

What am I doing wrong? Is there an issue with pre-release nuget packages?

Suraj
  • 35,905
  • 47
  • 139
  • 250
  • Opened a command prompt, updated NuGet using "NuGet update -self" and executed "nuget list OBeautifulCode.AutoFakeItEasy -prerelease -source https://nuget.smbsrc.net/". The response is: BeautifulCode.AutoFakeItEasy 1.0.81-fix-at-12MXML. Maybe a network problem? – Jeroen Heier Jan 21 '17 at 14:01
  • @JeroenHeier - correct. I see the same response that you do - proving that the symbol package is there. Not sure about network problem, I have no problem installing nuget packages and I've got a great connection. – Suraj Jan 21 '17 at 14:23
  • Do you still have this problem or have you manage to solve it? I am strugling with the exact same issue at the moment – Mikael Johansson Apr 14 '17 at 07:35
  • I stopped trying =( – Suraj Apr 14 '17 at 13:03

2 Answers2

2

I experienced the same thing. For me it was the way I entered the symbol server path in visual studio. Seems like a trailing slash breaks things.

right:

https://nuget.smbsrc.net

wrong:

https://nuget.smbsrc.net/

1

I get the same issue when I push a Symbol NuGet package (not a pre-release version) to symbolsource.org based on following tutorial and configure the Visual Studio with this tutorial.

https://learn.microsoft.com/en-us/nuget/create-packages/symbol-packages

So I add comments for this issue under this tutorial to confirm whether there has any problem on the symbolsource.org and the steps in introduced.

Weiwei
  • 3,674
  • 1
  • 10
  • 13