我昨天从.Net 5更新到了.Net 6,现在我的项目不能从dotnet run开始。然后我得到了这个错误:
Building...
warn: Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer[5]
The ASP.NET Core developer certificate is in an invalid state. To fix this issue, run the following commands 'dotnet dev-certs https --clean' and 'dotnet dev-certs https' to remove all existing ASP.NET Core development certificates and create a new untrusted developer certificate. On macOS or Windows, use 'dotnet dev-certs https --trust' to trust the new certificate.
fail: Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer[4]
The ASP.NET Core developer certificate is in an invalid state. To fix this issue, run the following commands 'dotnet dev-certs https --clean' and 'dotnet dev-certs https' to remove all existing ASP.NET Core development certificates and create a new untrusted developer certificate. On macOS or Windows, use 'dotnet dev-certs https --trust' to trust the new certificate.我已经尝试了删除/清理和重新创建的所有步骤,但都没有帮助。服务器启动,但无法从浏览器进行连接。
我使用Mac OS 11
有谁有主意吗?
发布于 2021-11-16 10:18:45
在项目文件的<PropertyGroup>元素下添加<UseAppHost>false</UseAppHost>。要了解有关此临时问题的更多信息,请查看here
https://stackoverflow.com/questions/69916598
复制相似问题