make Kestrel the default profile in launchjSettings.json

This commit is contained in:
sbwalker 2025-01-31 09:18:44 -05:00
parent a87af264eb
commit 1fd2aedf96

View File

@ -8,20 +8,20 @@
} }
}, },
"profiles": { "profiles": {
"IIS Express": { "Oqtane": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Oqtane.Client": {
"commandName": "Project", "commandName": "Project",
"launchBrowser": true, "launchBrowser": true,
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
}, },
"applicationUrl": "http://localhost:44358/" "applicationUrl": "http://localhost:44358/"
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
} }
} }
} }