I just tried creating a trusted developer certificate on my local machine (Windows 10). I follow the below listed commands.
Frist to verify any certs exists.
C:\>dotnet dev-certs https --check
No valid certificate found.
Then I create the trusted certificate:
C:\>dotnet dev-certs https --trust
Trusting the HTTPS development certificate was requested. A confirmation prompt will be displayed if the certificate was not previously trusted. Click yes on the prompt to trust the certificate.
The HTTPS developer certificate was generated successfully.
I clicked on the prompt to trust the certificate.
Then I ran the following command to verify the created certificate on the machine
C:\>dotnet dev-certs https --check
No valid certificate found.
Looks like the certificate has not been created.
Has anyone experianced the same? Any fix or workaround for this?
Any thoughts?
Thanks ~RSF