TeamCity Symbol Server Does Not Serve Symbols

I am trying to implement TeamCity Symbol Server for my internal NuGet packages, however the characters are not loading. I follow the instructions according to this blog , which is the standard tip for the character server.

+1
source share
1 answer

TeamCity Symbol Server plugin page showed url to be used

http://ourserver/app/symbols/ 

The fix was to remove the trailing slash

 http://ourserver/app/symbols 

Clicking this URL gives 404, but this is a format that works for Visual Studio 2012 and when trying to validate characters through symchk.exe

eg:

 symchk /r mylibrary.dll /s SRV*http://outserver.acp.net/app/symbols 

Using this URL, it displays a basic login prompt and the characters load correctly

+5
source

Source: https://habr.com/ru/post/979700/


All Articles