我刚刚尝试在本地计算机(Windows 10)上创建受信任的开发人员证书。我遵循下面列出的命令。
首先验证是否存在任何证书。
C:\>dotnet dev-certs https --check
No valid certificate found.然后创建受信任的证书:
C:\>dotnet dev-certs https --trust
Trusting the HTTPS development certificate was requested. A confirmation prompt will be displayed if the certificate was not previously trusted. Click yes on the prompt to trust the certificate.
The HTTPS developer certificate was generated successfully.我单击提示以信任证书。
然后,我运行以下命令来验证机器上创建的证书
C:\>dotnet dev-certs https --check
No valid certificate found.看起来证书尚未创建。
有没有人有过同样的经历?对此有任何修复或解决方法吗?
有什么想法吗?
谢谢~RSF
发布于 2020-12-24 00:45:02
今天我也遇到了同样的问题。
我不得不:
<代码>G211
https://stackoverflow.com/questions/65334758
复制相似问题