diff --git a/Fonlow.OpenApiClientGen.ClientTypes/Fonlow.OpenApiClientGen.ClientTypes.csproj b/Fonlow.OpenApiClientGen.ClientTypes/Fonlow.OpenApiClientGen.ClientTypes.csproj index deeb41c9..fced5068 100644 --- a/Fonlow.OpenApiClientGen.ClientTypes/Fonlow.OpenApiClientGen.ClientTypes.csproj +++ b/Fonlow.OpenApiClientGen.ClientTypes/Fonlow.OpenApiClientGen.ClientTypes.csproj @@ -13,7 +13,7 @@ MIT Fonlow.OpenApiClientGen.ClientTypes Fonlow.OpenApiClientGen.ClientTypes - 3.2 + 3.2.1 Better support for Int64 in JS. More doc comments generated. latest-all @@ -23,7 +23,7 @@ - + diff --git a/Tests/CsOpenApi3Tests/CsOpenApi3Tests.csproj b/Tests/CsOpenApi3Tests/CsOpenApi3Tests.csproj index 7089588d..ea7de7df 100644 --- a/Tests/CsOpenApi3Tests/CsOpenApi3Tests.csproj +++ b/Tests/CsOpenApi3Tests/CsOpenApi3Tests.csproj @@ -28,7 +28,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/Tests/CsSwagger2Tests/CsSwagger2Tests.csproj b/Tests/CsSwagger2Tests/CsSwagger2Tests.csproj index c98aec33..01f6c0bb 100644 --- a/Tests/CsSwagger2Tests/CsSwagger2Tests.csproj +++ b/Tests/CsSwagger2Tests/CsSwagger2Tests.csproj @@ -30,7 +30,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/Tests/NG2OpenApi3Tests/NG2OpenApi3Tests.csproj b/Tests/NG2OpenApi3Tests/NG2OpenApi3Tests.csproj index 92d4711a..2f10824b 100644 --- a/Tests/NG2OpenApi3Tests/NG2OpenApi3Tests.csproj +++ b/Tests/NG2OpenApi3Tests/NG2OpenApi3Tests.csproj @@ -30,7 +30,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/Tests/NG2Tests/NG2Tests.csproj b/Tests/NG2Tests/NG2Tests.csproj index 8762960f..efdc8ab4 100644 --- a/Tests/NG2Tests/NG2Tests.csproj +++ b/Tests/NG2Tests/NG2Tests.csproj @@ -27,7 +27,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/Tests/SwagApiTests/PetsIntegration.cs b/Tests/SwagApiTests/PetsIntegration.cs index 22fec25d..b00940b8 100644 --- a/Tests/SwagApiTests/PetsIntegration.cs +++ b/Tests/SwagApiTests/PetsIntegration.cs @@ -11,7 +11,7 @@ public class PetsFixture : BasicHttpClient { public PetsFixture() { - var c = TestingSettings.Instance.ServiceCommands[0]; + var c = TestingSettings.Instance.ServiceCommands["LaunchWebApi"]; HttpClient.BaseAddress = new System.Uri(c.BaseUrl); Api = new PetClient(HttpClient, new Newtonsoft.Json.JsonSerializerSettings() diff --git a/Tests/SwagApiTests/SwagApiTests.csproj b/Tests/SwagApiTests/SwagApiTests.csproj index 49838d0c..a8b3d9e4 100644 --- a/Tests/SwagApiTests/SwagApiTests.csproj +++ b/Tests/SwagApiTests/SwagApiTests.csproj @@ -19,7 +19,7 @@ - + diff --git a/Tests/SwagApiTests/appsettings.json b/Tests/SwagApiTests/appsettings.json index 85ea7542..1da64d01 100644 --- a/Tests/SwagApiTests/appsettings.json +++ b/Tests/SwagApiTests/appsettings.json @@ -1,12 +1,12 @@ { "Testing": { - "ServiceCommands": [ - { + "ServiceCommands": { + "LaunchWebApi": { "CommandPath": "dotnet", "Arguments": "run --project ../../../../../PetWebApi/PetWebApi.csproj --no-build --configuration {BuildConfiguration}", "BaseUrl": "http://127.0.0.1:5000/", "Delay": 5 } - ] + } } } \ No newline at end of file diff --git a/Tests/SwagApiTestsTextJson/PetsIntegration.cs b/Tests/SwagApiTestsTextJson/PetsIntegration.cs index 5cca235b..63afc8dc 100644 --- a/Tests/SwagApiTestsTextJson/PetsIntegration.cs +++ b/Tests/SwagApiTestsTextJson/PetsIntegration.cs @@ -11,7 +11,7 @@ public class PetsFixture : BasicHttpClient { public PetsFixture() { - var c = TestingSettings.Instance.ServiceCommands[0]; + var c = TestingSettings.Instance.ServiceCommands["LaunchWebApi"]; HttpClient.BaseAddress = new System.Uri(c.BaseUrl); Api = new PetClient(HttpClient, new System.Text.Json.JsonSerializerOptions() diff --git a/Tests/SwagApiTestsTextJson/SwagApiTestsTextJson.csproj b/Tests/SwagApiTestsTextJson/SwagApiTestsTextJson.csproj index abc9b8de..0a39ebd9 100644 --- a/Tests/SwagApiTestsTextJson/SwagApiTestsTextJson.csproj +++ b/Tests/SwagApiTestsTextJson/SwagApiTestsTextJson.csproj @@ -18,7 +18,7 @@ - + diff --git a/Tests/SwagApiTestsTextJson/appsettings.json b/Tests/SwagApiTestsTextJson/appsettings.json index 61ed6047..961bdc41 100644 --- a/Tests/SwagApiTestsTextJson/appsettings.json +++ b/Tests/SwagApiTestsTextJson/appsettings.json @@ -1,12 +1,12 @@ { "Testing": { - "ServiceCommands": [ - { + "ServiceCommands": { + "LaunchWebApi": { "CommandPath": "dotnet", "Arguments": "run --project ../../../../../PetWebApi/PetWebApi.csproj --no-build --configuration {BuildConfiguration} --launch-profile PetWebApiForTextJson", "BaseUrl": "http://127.0.0.1:6000/", "Delay": 5 } - ] + } } } \ No newline at end of file diff --git a/Tests/SwagTests/SwagTests.csproj b/Tests/SwagTests/SwagTests.csproj index fb796e2b..a23d8882 100644 --- a/Tests/SwagTests/SwagTests.csproj +++ b/Tests/SwagTests/SwagTests.csproj @@ -13,7 +13,7 @@ - + diff --git a/Tests/SwagTsTests/SwagTsTests.csproj b/Tests/SwagTsTests/SwagTsTests.csproj index 0d22620b..8b55b892 100644 --- a/Tests/SwagTsTests/SwagTsTests.csproj +++ b/Tests/SwagTsTests/SwagTsTests.csproj @@ -30,7 +30,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - +