Debugging 推送nuget符号包时出现证书错误

Debugging 推送nuget符号包时出现证书错误,debugging,package,nuget,push,symbols,Debugging,Package,Nuget,Push,Symbols,我正在尝试将符号包推送到nuget symbol服务器。API密钥已设置,常规包已上载。但是,当我尝试推送symbol包时,它无法说出以下内容: PM> nuget push .\Tanneryd.BulkInsert.1.0.1-alfa.symbols.nupkg -source https://nuget.smbsrc.net/ Pushing Tanneryd.BulkInsert.1.0.1-alfa.symbols.nupkg to the symbol server (htt

我正在尝试将符号包推送到nuget symbol服务器。API密钥已设置,常规包已上载。但是,当我尝试推送symbol包时,它无法说出以下内容:

PM> nuget push .\Tanneryd.BulkInsert.1.0.1-alfa.symbols.nupkg -source https://nuget.smbsrc.net/ Pushing Tanneryd.BulkInsert.1.0.1-alfa.symbols.nupkg to the symbol server (https://nuget.smbsrc.net/)...   PUT https://nuget.smbsrc.net/api/v2/package/   PUT https://nuget.smbsrc.net/api/v2/package/   PUT https://nuget.smbsrc.net/api/v2/package/ nuget : The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. At line:1 char:1
+ nuget push .\Tanneryd.BulkInsert.1.0.1-alfa.symbols.nupkg -source htt ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (The underlying ...secure channel.:String) [], RemoteException
    + FullyQualifiedErrorId : NativeCommandError
    The remote certificate is invalid according to the validation procedure.
当前似乎存在证书错误(例如,证书过期)。当我从IE来到这里时,我看到:

This site is not secure

This might mean that someone’s trying to fool you or steal any info you send to the server. You should close this site immediately.
更新

我能够通过指定HTTP而不是安全来发布。例如:

nuget push dist/MyPackage.1.0.0.symbols.nupkg -Source http://nuget.smbsrc.net  -ApiKey [my key]

问题也被报告为NuGet。域现在又有了一个有效的证书,它应该可以工作了。