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

.net coreasp.net-coreasp.net-core-2.1kestrel

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

Best Answer

These instructions from this blog worked for me

  1. dotnet dev-certs https --clean
  2. dotnet dev-certs https -t
  3. Restart VS
Related Topic