.Net Core
Para aquellos que llegaron aquí buscando esta configuración en .Net core, esto reside en el lauchSettings.json. Simplemente edite el puerto en la propiedad "applicationUrl".
El archivo debería verse así:
{
"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"
},
}
}
}
O puede usar la GUI haciendo doble clic en las "Propiedades" de su proyecto.
Nota: tuve que volver a abrir VS para que funcionara.