From 7f1fed2fb15b32f08cabdd56d5112545e802f0fe Mon Sep 17 00:00:00 2001 From: sbwalker Date: Fri, 22 Aug 2025 10:06:10 -0400 Subject: [PATCH] make kestrel the default web server for the app template --- .../AppHost/Properties/launchSettings.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Oqtane.Application/AppHost/Properties/launchSettings.json b/Oqtane.Application/AppHost/Properties/launchSettings.json index c0b641d5..11cab4d9 100644 --- a/Oqtane.Application/AppHost/Properties/launchSettings.json +++ b/Oqtane.Application/AppHost/Properties/launchSettings.json @@ -8,15 +8,7 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "Oqtane.AppHost": { + "Oqtane.Application": { "commandName": "Project", "launchBrowser": true, "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", @@ -24,6 +16,14 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "http://localhost:44358/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } }