Oliver Booth
23d3950695
This workflow allows the possibility to reload a changed page without reloading the entire app. I hate launchSettings.json, but whatever.
30 lines
762 B
JSON
30 lines
762 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/launchsettings.json",
|
|
"iisSettings": {
|
|
"windowsAuthentication": false,
|
|
"anonymousAuthentication": true,
|
|
"iisExpress": {
|
|
"applicationUrl": "http://localhost:5000",
|
|
"sslPort": 2845
|
|
}
|
|
},
|
|
"profiles": {
|
|
"https": {
|
|
"commandName": "Project",
|
|
"dotnetRunMessages": true,
|
|
"launchBrowser": false,
|
|
"workingDirectory": "bin/Debug/net8.0/",
|
|
"applicationUrl": "https://localhost:2845",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
"IIS Express": {
|
|
"commandName": "IISExpress",
|
|
"launchBrowser": true,
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
}
|
|
}
|
|
} |