From 83cdb9dfe909f605c7ce696b8f05a257a432e3ab Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 15 Jun 2026 16:20:28 +0200 Subject: [PATCH] Update launch settings for HTTPS and ReceiverUI profiles Changed the `launchUrl` for the HTTPS profile in `launchSettings.json` from `"swagger"` to `"sender"`, updating the default URL path. Disabled `launchBrowser` for the `EnvelopeGenerator.ReceiverUI` profile, preventing the browser from automatically opening when this profile is executed. --- EnvelopeGenerator.API/Properties/launchSettings.json | 2 +- EnvelopeGenerator.ReceiverUI/Properties/launchSettings.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/EnvelopeGenerator.API/Properties/launchSettings.json b/EnvelopeGenerator.API/Properties/launchSettings.json index 2ab4f3f4..365fa0b2 100644 --- a/EnvelopeGenerator.API/Properties/launchSettings.json +++ b/EnvelopeGenerator.API/Properties/launchSettings.json @@ -23,7 +23,7 @@ "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": true, - "launchUrl": "swagger", + "launchUrl": "sender", "applicationUrl": "https://localhost:8088;http://localhost:5131", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" diff --git a/EnvelopeGenerator.ReceiverUI/Properties/launchSettings.json b/EnvelopeGenerator.ReceiverUI/Properties/launchSettings.json index 166bbda2..227c2ec4 100644 --- a/EnvelopeGenerator.ReceiverUI/Properties/launchSettings.json +++ b/EnvelopeGenerator.ReceiverUI/Properties/launchSettings.json @@ -2,7 +2,7 @@ "profiles": { "EnvelopeGenerator.ReceiverUI": { "commandName": "Project", - "launchBrowser": true, + "launchBrowser": false, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" },