Mike
Mike

Reputation: 1331

Enabling SSL in Visual Studio 2017

In VS 2015 when clicking on the properties tab of the project there was an SSL box that could be set to true or false. I can't find the same thing in VS 2017. Anyone know?

Cheers.

Upvotes: 12

Views: 15010

Answers (2)

dragonborn
dragonborn

Reputation: 21

Step 1 - Open project properties enter image description here Step 2 - Set launch from 'Project' to 'IIS' enter image description here Step 3 - Click on Enable SSL enter image description here Step 4 - Copy the HTTPS URL enter image description here Step 5 - Switch back to project and paste the url enter image description here

Upvotes: 0

meziantou
meziantou

Reputation: 21337

The SSL setting is at a different place in ASP.NET and ASP.NET Core projects. The following screenshots come from my blog: https://www.meziantou.net/2016/10/09/iis-express-ssl

ASP.NET

ASP.NET Core

Upvotes: 33

Related Questions