Reputation: 1852
So, I am puzzled what is happening. What am I missing to do? I appriciate any help or suggetsion.
Upvotes: 1
Views: 626
Reputation: 76910
With this command: nuget push myPackage-Beta.nupkg xxxxxxx-xxxx-xxxx-xxxx-xxxxxxx -Source nuget.org -SymbolSource https://nuget.smbsrc.net -Verbosity detailed -Timeout 600
You should push the package "myPackage-Beta.nupkg" and "myPackage-Beta.symbols.nupkg" to nuget.org and https://nuget.smbsrc.net individually.
Detail steps:
Push regular package to nuget.org:
nuget push myPackage-Beta.nupkg xxxxxxx-xxxx-xxxx-xxxx-xxxxxxx -Source nuget.org
Push symbols package to https://nuget.smbsrc.net:
nuget push myPackage-Beta.symbols.nupkg -Source https://nuget.smbsrc.net
After those steps, we could list the version of symbols package:
nuget list PackageName -AllVersion -Prerelease -source https://nuget.smbsrc.net
Upvotes: 0