From cdceec28141ac6d268f32168c0875b8b61b61524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Skogstad?= Date: Tue, 24 Sep 2024 22:26:34 +0200 Subject: [PATCH] chore(webAPI): Remove unused lauch profiles (#1186) ## Summary by CodeRabbit - **New Features** - Updated application launch settings to improve user control over the startup process. - **Bug Fixes** - Removed the IIS Express profile to streamline application configuration. - **Chores** - Adjusted the browser launch setting to prevent automatic opening upon application start. --- .../Properties/launchSettings.json | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/src/Digdir.Domain.Dialogporten.WebApi/Properties/launchSettings.json b/src/Digdir.Domain.Dialogporten.WebApi/Properties/launchSettings.json index b2c42d8b9..3d2bf5033 100644 --- a/src/Digdir.Domain.Dialogporten.WebApi/Properties/launchSettings.json +++ b/src/Digdir.Domain.Dialogporten.WebApi/Properties/launchSettings.json @@ -1,18 +1,10 @@ { "$schema": "https://json.schemastore.org/launchsettings.json", - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38966", - "sslPort": 44343 - } - }, "profiles": { "http": { "commandName": "Project", "dotnetRunMessages": true, - "launchBrowser": true, + "launchBrowser": false, "launchUrl": "swagger", "applicationUrl": "http://localhost:5123", "environmentVariables": { @@ -28,14 +20,6 @@ "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } - }, - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "launchUrl": "swagger", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } } } }