netcore 下載首次執行 報證書錯誤
阿新 • • 發佈:2019-05-03
信任Windows和macOS上的ASP.NET核心HTTPS開發證書
.NET Core SDK包含HTTPS開發證書。證書作為首次執行體驗的一部分安裝。例如,dotnet --info
生成類似於以下內容的輸出:
ASP.NET Core
------------
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only).
For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
安裝.NET Core SDK會將ASP.NET Core HTTPS開發證書安裝到本地使用者證書儲存區。證書已安裝,但不受信任。要信任證書,請執行一次性步驟以執行dotnet dev-certs
工具:
dotnet dev-certs https --trust
以下命令提供有關該dev-certs
工具的幫助:
dotnet dev-certs https --help