From a3be0d96480892a6b2e13ebae30a636389373bbb Mon Sep 17 00:00:00 2001 From: max Date: Sat, 30 Nov 2024 21:44:33 +0100 Subject: [PATCH] Add test settings --- TestWebApi/Properties/launchSettings.json | 41 +++++++++++++++++++++++ TestWebApi/appsettings.Development.json | 3 ++ TestWebApi/appsettings.json | 3 ++ 3 files changed, 47 insertions(+) create mode 100644 TestWebApi/Properties/launchSettings.json create mode 100644 TestWebApi/appsettings.Development.json create mode 100644 TestWebApi/appsettings.json diff --git a/TestWebApi/Properties/launchSettings.json b/TestWebApi/Properties/launchSettings.json new file mode 100644 index 0000000..5c240e5 --- /dev/null +++ b/TestWebApi/Properties/launchSettings.json @@ -0,0 +1,41 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:35507", + "sslPort": 44353 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://localhost:5044", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7234;http://localhost:5044", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/TestWebApi/appsettings.Development.json b/TestWebApi/appsettings.Development.json new file mode 100644 index 0000000..1797133 --- /dev/null +++ b/TestWebApi/appsettings.Development.json @@ -0,0 +1,3 @@ +{ + +} diff --git a/TestWebApi/appsettings.json b/TestWebApi/appsettings.json new file mode 100644 index 0000000..4faf77a --- /dev/null +++ b/TestWebApi/appsettings.json @@ -0,0 +1,3 @@ +{ + "AllowedHosts": "*" +}