From 1cab4fadd171f539254bd9487ee026d37c57d935 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 31 Jul 2024 14:15:10 +0200 Subject: [PATCH] chore: launchSettings wurden korrigiert. --- .../Properties/launchSettings.json | 37 +++++++++++++++++-- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/DigitalData.UserManager.API/Properties/launchSettings.json b/DigitalData.UserManager.API/Properties/launchSettings.json index eba68da..9f5bc2f 100644 --- a/DigitalData.UserManager.API/Properties/launchSettings.json +++ b/DigitalData.UserManager.API/Properties/launchSettings.json @@ -1,12 +1,41 @@ { + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:2351", + "sslPort": 44313 + } + }, "profiles": { - "DigitalData.UserManager.API": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://localhost:5137", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7103;http://localhost:5137", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", "launchBrowser": true, + "launchUrl": "swagger", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:57319;http://localhost:57320" + } } } -} \ No newline at end of file +}