Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found

這是因為.net core預設使用https。若沒有安裝憑證這個錯誤就會被回報。要解決這問題,就執行以下dotnet 指令。

dotnet dev-certs https –trust

但運行時有可能面臨以下錯誤

目前.Net 在Visual Studio使用版本是 6 preview。然而sdk目錄夾有兩個6.0 preview資料夾。刪掉其中一個再執行dotnet dev-certs https –trust 就可正常安裝憑證。

現在你可以成功地運行 dotnet 專案了