Reputation: 27394
I am using VSTS and have set up a build script that also publishes to the VSTS internal (private) Nuget feed. All good so far.
Now I want to publish the symbols somewhere so that I can debug those nuget packages. Just FYI I am open to another way of doing this if there is a better or easier way!
So I found the Index Source & Symbols Publish article and associated build step. This looks great! But I don't understand how to make it publish somewhere and where that somewhere should be? Do I have to create an Azure file share and how do I give it appropriate permissions so the build agent can copy it? I feel like the docs at this point are either beyond my understanding or are missing vital information
If anyone could help me I'd be very grateful. Thanks.
P.s. I have included my build order and activities here if that helps give context
Upvotes: 1
Views: 1797
Reputation: 33708
There are many ways to publish symbols, for example:
You can specify symbol location in VS if you want to debug with these symbol files. More information, you can refer to: Specify Symbol (.pdb) and Source Files in the Visual Studio Debugger
Upvotes: 1