Updated the project's framework to .NET 5 and changed its launch configuration to no longer pop a browser on startup.

This commit is contained in:
2021-03-10 15:03:02 -06:00
parent 59a5733d4e
commit 3d3b9c1e68
6 changed files with 13 additions and 13 deletions
+8 -9
View File
@@ -1,18 +1,17 @@
{
"$schema": "http://json.schemastore.org/launchsettings.json",
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:50232",
"applicationUrl": "http://localhost:50000",
"sslPort": 0
}
},
"$schema": "http://json.schemastore.org/launchsettings.json",
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "weatherforecast",
"commandName": "Project",
"launchUrl": "weather",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
@@ -21,10 +20,10 @@
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "weatherforecast",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"applicationUrl": "http://localhost:5000"
}
}
}
}