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

后端 未结 13 2050
南旧
南旧 2021-01-30 19:46

I am working on a fabric application where I have configured HTTPS. It is throwing an exception though I have a valid installed certificate.

13条回答
  •  温柔的废话
    2021-01-30 20:34

    1. dotnet tool uninstall --global dotnet-dev-certs --version (required version)
    2. dotnet tool install --global dotnet-dev-certs
    3. dotnet dev-certs https --trust

    For more details visit the GitHub issue page here also the official documentation Here

提交回复
热议问题