From 9098ac81b5280a7f80e0658e9a9b72db854e9f1e Mon Sep 17 00:00:00 2001 From: ig Date: Tue, 21 Mar 2023 11:46:38 +0100 Subject: [PATCH] prevent rider from automatically opening swagger on each launch --- .../App/Backend/Properties/launchSettings.json | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/csharp/App/Backend/Properties/launchSettings.json b/csharp/App/Backend/Properties/launchSettings.json index 062a71f67..1729b03cd 100644 --- a/csharp/App/Backend/Properties/launchSettings.json +++ b/csharp/App/Backend/Properties/launchSettings.json @@ -1,31 +1,15 @@ { "$schema": "https://json.schemastore.org/launchsettings.json", - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:63205", - "sslPort": 44319 - } - }, "profiles": { "Backend": { "commandName": "Project", "dotnetRunMessages": true, - "launchBrowser": true, + "launchUrl": "swagger", "applicationUrl": "https://localhost:7087;http://localhost:5031", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } - }, - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "launchUrl": "swagger", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } } } }