所以,我很困惑发生了什么。我错过了什么?我赞美任何帮助或建议。
答案 0 :(得分:0)
使用此命令: nuget push myPackage-Beta.nupkg xxxxxxx-xxxx-xxxx-xxxx-xxxxxxx -Source nuget.org -SymbolSource https://nuget.smbsrc.net -Verbosity detailed -Timeout 600
您应该将软件包“myPackage-Beta.nupkg”和“myPackage-Beta.symbols.nupkg”推送到nuget.org并https://nuget.smbsrc.net 单独。
详细步骤:
将普通包推送到nuget.org:
nuget push myPackage-Beta.nupkg xxxxxxx-xxxx-xxxx-xxxx-xxxxxxx -Source nuget.org
将符号包推送到https://nuget.smbsrc.net:
nuget push myPackage-Beta.symbols.nupkg -Source https://nuget.smbsrc.net
在这些步骤之后,我们可以列出符号包的版本:
nuget list PackageName -AllVersion -Prerelease -source https://nuget.smbsrc.net