From 6b3e363e353ee8c510457d28911112dbc0f3edbe Mon Sep 17 00:00:00 2001 From: EzFeDezy Date: Wed, 23 Apr 2025 23:43:51 +0200 Subject: [PATCH] Added launchSettings, because why not --- src/server/Properties/launchSettings.json | 41 +++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/server/Properties/launchSettings.json diff --git a/src/server/Properties/launchSettings.json b/src/server/Properties/launchSettings.json new file mode 100644 index 0000000..916a0ce --- /dev/null +++ b/src/server/Properties/launchSettings.json @@ -0,0 +1,41 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:23614", + "sslPort": 44354 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://localhost:5146", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7099;http://localhost:5146", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +}