From f480269bc54164cb29f5db4c8ffbc49b7a9f709d Mon Sep 17 00:00:00 2001 From: ivanszabo Date: Tue, 20 Jan 2026 10:09:59 +0100 Subject: [PATCH] =?UTF-8?q?Maximumart=20g=C3=A9pre=20=C3=A1t=C3=A1ll=C3=A1?= =?UTF-8?q?s=20VS=202026?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/WorkFlowCheck.API.sln | 4 ++-- src/WorkFlowCheck.API/Properties/launchSettings.json | 10 ++++++++++ src/WorkFlowCheck.API/WorkFlowCheck.API.csproj | 1 + src/WorkFlowCheck.API/appsettings.Development.json | 2 +- src/WorkFlowCheck.API/appsettings.json | 2 +- src/WorkFlowCheck.Web/Properties/launchSettings.json | 10 ++++++++++ src/WorkFlowCheck.Web/WorkFlowCheck.Web.csproj | 1 + src/WorkFlowCheck.Web/appsettings.Development.json | 2 +- 8 files changed, 27 insertions(+), 5 deletions(-) diff --git a/src/WorkFlowCheck.API.sln b/src/WorkFlowCheck.API.sln index 5e38733..9941426 100644 --- a/src/WorkFlowCheck.API.sln +++ b/src/WorkFlowCheck.API.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.12.35527.113 +# Visual Studio Version 18 +VisualStudioVersion = 18.2.11408.102 d18.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkFlowCheck.API", "WorkFlowCheck.API\WorkFlowCheck.API.csproj", "{2466E04A-CB0C-4421-9074-A928F819926C}" EndProject diff --git a/src/WorkFlowCheck.API/Properties/launchSettings.json b/src/WorkFlowCheck.API/Properties/launchSettings.json index f296a32..0b5e226 100644 --- a/src/WorkFlowCheck.API/Properties/launchSettings.json +++ b/src/WorkFlowCheck.API/Properties/launchSettings.json @@ -17,6 +17,16 @@ "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } + }, + "WSL": { + "commandName": "WSL2", + "launchBrowser": true, + "launchUrl": "https://localhost:5069/swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development", + "ASPNETCORE_URLS": "https://localhost:5069" + }, + "distributionName": "" } }, "$schema": "http://json.schemastore.org/launchsettings.json", diff --git a/src/WorkFlowCheck.API/WorkFlowCheck.API.csproj b/src/WorkFlowCheck.API/WorkFlowCheck.API.csproj index 596b3a7..78cd048 100644 --- a/src/WorkFlowCheck.API/WorkFlowCheck.API.csproj +++ b/src/WorkFlowCheck.API/WorkFlowCheck.API.csproj @@ -10,6 +10,7 @@ false false true + 4081cb25-5ca2-40a1-a788-0d8396b4f50e diff --git a/src/WorkFlowCheck.API/appsettings.Development.json b/src/WorkFlowCheck.API/appsettings.Development.json index 23d4210..c2a0b17 100644 --- a/src/WorkFlowCheck.API/appsettings.Development.json +++ b/src/WorkFlowCheck.API/appsettings.Development.json @@ -2,7 +2,7 @@ "ConnectionStrings": { //"DefaultConnection": "Data Source=NSINB-37\\WFC;Initial Catalog=WFC;Integrated Security=True;Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;Application Intent=ReadWrite;Multi Subnet Failover=False" //"DefaultConnection": "Data Source=WS2016DC\\SQLEXPRESS;Initial Catalog=WFC;Integrated Security=True;Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;Application Intent=ReadWrite;Multi Subnet Failover=False", - "DefaultConnection": "Data Source=WS2016DC\\SQLEXPRESS;Initial Catalog=WFCUAT;Integrated Security=True;Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;Application Intent=ReadWrite;Multi Subnet Failover=False" + "DefaultConnection": "Data Source=DESKTOP-LD0KOOS;Initial Catalog=WFCUAT;Integrated Security=True;Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;Application Intent=ReadWrite;Multi Subnet Failover=False" }, "Logging": { "LogLevel": { diff --git a/src/WorkFlowCheck.API/appsettings.json b/src/WorkFlowCheck.API/appsettings.json index eb68076..5def0e3 100644 --- a/src/WorkFlowCheck.API/appsettings.json +++ b/src/WorkFlowCheck.API/appsettings.json @@ -1,6 +1,6 @@ { "ConnectionStrings": { - "DefaultConnection": "Data Source=WS2016DC\\SQLEXPRESS;Initial Catalog=WFCUAT;Integrated Security=True;Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;Application Intent=ReadWrite;Multi Subnet Failover=False" + "DefaultConnection": "Data Source=DESKTOP-LD0KOOS;Initial Catalog=WFCUAT;Integrated Security=True;Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;Application Intent=ReadWrite;Multi Subnet Failover=False" }, "ApiKey": "RUJeLSpSMzVASUdaRCEzUyYxRSE0VyFISFRSJC0zRzhLM1hCSDU=", "Jwt": { diff --git a/src/WorkFlowCheck.Web/Properties/launchSettings.json b/src/WorkFlowCheck.Web/Properties/launchSettings.json index 14091c8..d466e49 100644 --- a/src/WorkFlowCheck.Web/Properties/launchSettings.json +++ b/src/WorkFlowCheck.Web/Properties/launchSettings.json @@ -24,6 +24,16 @@ "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } + }, + "WSL": { + "commandName": "WSL2", + "launchBrowser": true, + "launchUrl": "https://localhost:7041", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development", + "ASPNETCORE_URLS": "https://localhost:7041;http://localhost:5258" + }, + "distributionName": "" } }, "$schema": "http://json.schemastore.org/launchsettings.json", diff --git a/src/WorkFlowCheck.Web/WorkFlowCheck.Web.csproj b/src/WorkFlowCheck.Web/WorkFlowCheck.Web.csproj index fc0f03e..75d6b18 100644 --- a/src/WorkFlowCheck.Web/WorkFlowCheck.Web.csproj +++ b/src/WorkFlowCheck.Web/WorkFlowCheck.Web.csproj @@ -10,6 +10,7 @@ false false true + b1687ae9-f7e6-45cf-bfbb-293f5d38ca14 diff --git a/src/WorkFlowCheck.Web/appsettings.Development.json b/src/WorkFlowCheck.Web/appsettings.Development.json index 8f8a3ec..6e8147e 100644 --- a/src/WorkFlowCheck.Web/appsettings.Development.json +++ b/src/WorkFlowCheck.Web/appsettings.Development.json @@ -1,5 +1,5 @@ { - "ApiBaseUrl": "https://localhost:44382/", + "ApiBaseUrl": "http://localhost:8660/", "DetailedErrors": true, "Logging": { "LogLevel": {