NuGet 警告 NU3013
方案 1
来自源“https://contoso.com/index.json”的包“SamplePackage v1.0.0”:签名证书的签名算法不受支持。
问题
用于对包进行签名的证书具有不受支持的签名算法。
解决方案
请确保签名证书具有以下签名算法之一 -
sha256WithRSAEncryption
sha384WithRSAEncryption
sha512WithRSAEncryption
方案 2
来自源“https://contoso.com/index.json”的包“SamplePackage v1.0.0”:主签名证书的签名算法不受支持。
问题
用于对包进行签名的证书具有不受支持的签名算法。
解决方案
请务必使用具有以下签名算法之一的证书对包进行签名 -
sha256WithRSAEncryption
sha384WithRSAEncryption
sha512WithRSAEncryption
注意
当 NuGet 的签名验证模式设为“接受”(默认值)时,NU3013 将显示为警告。
当 NuGet 的签名验证模式设为“需要”或在运行 nuget verify -signatures
命令时,NU3013 将从警告提升为错误。