デバッグ時にエラーが発生し実行できなくなる
エラーはMainで発生し、下記のメッセージが表示される
エラーメッセージ
System.InvalidOperationException: 'Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found or is out of date.
To generate a developer certificate run 'dotnet dev-certs https'. To trust the certificate (Windows and macOS only) run 'dotnet dev-certs https --trust'.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.'
環境
- Windows10 Pro
- Visual Stuido 2022 Pro
- .NET5 C# MVC
解決策
次の2つのコマンドを実行する
.NET CLI
dotnet dev-certs https --clean
dotnet dev-certs https --trust
解決策の出所
下記ページの「証明書に関する問題のトラブルシューティング (信頼されていない証明書など)」を参照