From 401e268281f4aacff2c9c94df3c8f291cc3981f0 Mon Sep 17 00:00:00 2001 From: sam Date: Tue, 4 Jun 2024 17:47:16 +0200 Subject: [PATCH] chore: add back Properties/launchSettings.json --- .../Properties/launchSettings.json | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Foxnouns.Backend/Properties/launchSettings.json diff --git a/Foxnouns.Backend/Properties/launchSettings.json b/Foxnouns.Backend/Properties/launchSettings.json new file mode 100644 index 0000000..b680651 --- /dev/null +++ b/Foxnouns.Backend/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "Development": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "externalUrlConfiguration": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "Production": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "externalUrlConfiguration": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Production" + } + } + } +} \ No newline at end of file