Merge pull request #5050 from sbwalker/dev

make Kestrel the default profile in launchjSettings.json
This commit is contained in:
Shaun Walker 2025-01-31 09:18:59 -05:00 committed by GitHub
commit 7eee1fcd6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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"
}
} }
} }
} }