We're developing Web API web servers in Visual Studio. We have enabled SSL. This requires a local SSL certificate. We have set this up on our development machines, but we need to be able to set it up on our CI build machines via command line in order to run Selenium tests. Locally, Visual Studio is helpful with getting this taken care of. When you start the Web API web servers, you get the following prompt:
This project is configured to use SSL. To avoid SSL warnings in the browser you can choose to trust the self-signed certificate that IIS Express has generated.
Would you like to trust the IIS Express SSL certificate?
I need to duplicate what happens when I click "Yes" in this prompt via the command line. How do I do this?