Skip to content

Commit

Permalink
updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
zijianhuang committed Jul 7, 2024
1 parent 468c125 commit 255dbac
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<AssemblyName>Fonlow.OpenApiClientGen.ClientTypes</AssemblyName>
<RootNamespace>Fonlow.OpenApiClientGen.ClientTypes</RootNamespace>
<Version>3.2</Version>
<Version>3.2.1</Version>
<PackageReleaseNotes>Better support for Int64 in JS. More doc comments generated.</PackageReleaseNotes>
<AnalysisLevel>latest-all</AnalysisLevel>
</PropertyGroup>
Expand All @@ -23,7 +23,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Fonlow.Poco2TsCore" Version="3.9.0" />
<PackageReference Include="Fonlow.Poco2TsCore" Version="3.9.1" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.15" />
<PackageReference Include="Tavis.UriTemplates" Version="2.0.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tests/CsOpenApi3Tests/CsOpenApi3Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fonlow.Testing.Integration" Version="1.0.0" />
<PackageReference Include="Fonlow.Testing.Integration" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tests/CsSwagger2Tests/CsSwagger2Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Fonlow.Testing.Integration" Version="1.0.0" />
<PackageReference Include="Fonlow.Testing.Integration" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tests/NG2OpenApi3Tests/NG2OpenApi3Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fonlow.Testing.Integration" Version="1.0.0" />
<PackageReference Include="Fonlow.Testing.Integration" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tests/NG2Tests/NG2Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Fonlow.Testing.Integration" Version="1.0.0" />
<PackageReference Include="Fonlow.Testing.Integration" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tests/SwagApiTests/PetsIntegration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion Tests/SwagApiTests/SwagApiTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Fonlow.Testing.Integration" Version="1.0.0" />
<PackageReference Include="Fonlow.Testing.Integration" Version="1.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
Expand Down
6 changes: 3 additions & 3 deletions Tests/SwagApiTests/appsettings.json
Original file line number Diff line number Diff line change
@@ -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
}
]
}
}
}
2 changes: 1 addition & 1 deletion Tests/SwagApiTestsTextJson/PetsIntegration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion Tests/SwagApiTestsTextJson/SwagApiTestsTextJson.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Fonlow.Testing.Integration" Version="1.0.0" />
<PackageReference Include="Fonlow.Testing.Integration" Version="1.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
Expand Down
6 changes: 3 additions & 3 deletions Tests/SwagApiTestsTextJson/appsettings.json
Original file line number Diff line number Diff line change
@@ -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
}
]
}
}
}
2 changes: 1 addition & 1 deletion Tests/SwagTests/SwagTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Fonlow.Testing.Integration" Version="1.0.0" />
<PackageReference Include="Fonlow.Testing.Integration" Version="1.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
Expand Down
2 changes: 1 addition & 1 deletion Tests/SwagTsTests/SwagTsTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fonlow.Testing.Integration" Version="1.0.0" />
<PackageReference Include="Fonlow.Testing.Integration" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 255dbac

Please sign in to comment.