.Net core
For those looking for this configuration in .Net core , it is located in lauchSettings.json . Just edit the port in the "applicationUrl" property.
The file should look something like this:
{ "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { "applicationUrl": "http://localhost:53950/", //Here "sslPort": 0 } }, "profiles": { "IIS Express": { "commandName": "IISExpress", "launchBrowser": true, "launchUrl": "index.html", "environmentVariables": { "Hosting:Environment": "Development" }, } } }
Or you can use the graphical interface by double-clicking the "Properties" of the yor project.
Note. I had to reopen VS to make it work.
fabriciorissetto Jun 17 '16 at 19:02 2016-06-17 19:02
source share