Update launchSettings.json with new profiles and URLs

Updated the `$schema` URL to use HTTPS. Modified `iisSettings` with new `applicationUrl` and `sslPort`. Removed old profiles (`http`, `https`, `IIS Express`) and added new ones: `https (Blazor UI)`, `https (Swagger API)`, `http (Development)`, and updated `IIS Express`. Removed `inspectUri` from `IIS Express` profile.
This commit is contained in:
2026-06-22 15:06:46 +02:00
parent 3f0f5d7fb9
commit e776c2edb4

View File

@@ -1,41 +1,49 @@
{ {
"$schema": "http://json.schemastore.org/launchsettings.json", "$schema": "https://json.schemastore.org/launchsettings.json",
"iisSettings": { "iisSettings": {
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "http://localhost:22250", "applicationUrl": "http://localhost:5131",
"sslPort": 44329 "sslPort": 8088
}
},
"profiles": {
"https (Blazor UI)": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:8088;http://localhost:5131",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}"
},
"https (Swagger API)": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:8088;http://localhost:5131",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
} }
}, },
"profiles": { "http (Development)": {
"http": { "commandName": "Project",
"commandName": "Project", "dotnetRunMessages": true,
"dotnetRunMessages": true, "launchBrowser": true,
"launchBrowser": true, "applicationUrl": "http://localhost:5131",
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", "environmentVariables": {
"applicationUrl": "http://localhost:5092", "ASPNETCORE_ENVIRONMENT": "Development"
"environmentVariables": { }
"ASPNETCORE_ENVIRONMENT": "Development" },
} "IIS Express": {
}, "commandName": "IISExpress",
"https": { "launchBrowser": true,
"commandName": "Project", "environmentVariables": {
"dotnetRunMessages": true, "ASPNETCORE_ENVIRONMENT": "Development"
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:7041;http://localhost:5092",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
} }
} }
} }
}