[Request] Include symbols in nuget packages
Would it be possible to include the symbols in the new 3.X-pre nuget packages? This would make debugging so much easier :)
I am trying to push them but it doesn't seem to work. Do you have any idea why? https://github.com/TinyStuff/TinyMvvm/blob/3.0/build.cake
I think that the URL to push the symbols is: https://www.nuget.org/api/v2/symbolpackage/
So it might be the case that you migth need to set the settings.Source = "https://www.nuget.org/api/v2/symbolpackage/" before trying to push the symbols
Any news on this?
I tried, but it doesn't seem to work.
ok. That is weird. I have some pipelines configured in AzureDevOps, that are delivering packages with symbols to nuget. When looking at the logs of the execution I see the following:
Pushing <PackageName>.nupkg to 'https://www.nuget.org/api/v2/package'...
PUT https://www.nuget.org/api/v2/package/
Created https://www.nuget.org/api/v2/package/ 520ms
Your package was pushed.
Pushing <PackageName>.snupkg to 'https://www.nuget.org/api/v2/symbolpackage'...
PUT https://www.nuget.org/api/v2/symbolpackage/
Created https://www.nuget.org/api/v2/symbolpackage/ 558ms
Your package was pushed.
I'm not very familiarized with cake, so not sure what could be changed in your script. Nevertheless, thank you for taking a look at it.