Skip to content

Commit e772e21

Browse files
committed
updated packages
1 parent dd19830 commit e772e21

File tree

7 files changed

+8
-12
lines changed

7 files changed

+8
-12
lines changed

DemoGodAssemblyWeb/DemoGodAssemblyWeb.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
<AnalysisLevel>latest-minimum</AnalysisLevel>
88
</PropertyGroup>
99

10-
<ItemGroup>
11-
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.1" />
12-
</ItemGroup>
13-
1410
<ItemGroup>
1511
<ProjectReference Include="..\WebApiClientGenCore\WebApiClientGenCore.csproj" />
1612
<ProjectReference Include="..\Fonlow.DateOnlyExtensionsNet\Fonlow.DateOnlyExtensionsTextJson.csproj" />

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Strongly Typed Client Web API Generators generate client API codes in C# and Typ
33
# Products
44

55
This project delivers these products:
6-
1. [Code generator for strongly typed client API in C#](https://github.com/zijianhuang/webapiclientgen/wiki/Documentation) supporting .NET and Xamarin.Forms.
7-
1. [Code generators for strongly typed client API in TypeScript](https://github.com/zijianhuang/webapiclientgen/wiki/Code-generator-for-strongly-typed-client-API-in-TypeScript) for jQuery, Angular 2+, Aurelia, Axios and Fetch API.
6+
1. [Code generator for strongly typed client API in C#](https://github.com/zijianhuang/webapiclientgen/wiki/Documentation) supporting .NET and Xamarin.Forms/MAUI.
7+
1. [Code generators for strongly typed client API in TypeScript](https://github.com/zijianhuang/webapiclientgen/wiki/Code-generator-for-strongly-typed-client-API-in-TypeScript) for jQuery, Angular 2+, Aurelia, AXIOS and Fetch API.
88
1. [TypeScript CodeDOM](https://github.com/zijianhuang/TypeScriptCodeDOM), a .NET CodeDOM component for TypeScript for developing TypeScript code generators.
99
1. [POCO2TS.exe](https://github.com/zijianhuang/webapiclientgen/wiki/POCO2TS.exe), a command line program that generates TypeScript interfaces from POCO classes.
1010
1. [Fonlow.Poco2Ts](https://github.com/zijianhuang/webapiclientgen/wiki/Fonlow.Poco2Ts), a component that generates TypeScript interfaces from POCO classes.
@@ -34,7 +34,7 @@ The products are released mostly through NuGet.
3434
**Hints:**
3535

3636
* [OpenApiClientGen](https://github.com/zijianhuang/openapiclientgen) based on key components of WebApiClientGen is a spin-off for generating client API codes in C# and TypeScript according to a definition file of Swagger/Open API Specification.
37-
* WebApiClientGen does not utilize Swagger / OpenAPI definitions, but generate codes from run time type info of a running Web API of the debug build, getting rid of the inherent limitations of OpenAPI against .NET types and Web API to give better developer experience to ASP.NET (Core) Web API developers.
37+
* WebApiClientGen does not utilize Swagger / OpenAPI definitions, but generate codes from runtime type info of a running Web API of the debug build, getting rid of the inherent limitations of OpenAPI against .NET types and Web API to give better developer experience to ASP.NET (Core) Web API developers.
3838

3939
**Remarks:**
4040

Tests/DateOnlyExtensionsTextJsonTests/DateOnlyExtensionsTextJsonTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
15-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
1616
<PackageReference Include="xunit" Version="2.9.3" />
1717
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
1818
<PrivateAssets>all</PrivateAssets>

Tests/IntegrationTestsCore/IntegrationTestsCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<ItemGroup>
3232
<PackageReference Include="Fonlow.Testing.Integration" Version="1.2.5" />
3333
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.5" />
34-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
34+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
3535
<PackageReference Include="xunit" Version="2.9.3" />
3636
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
3737
<PrivateAssets>all</PrivateAssets>

Tests/IntegrationTestsTextJson/IntegrationTestsTextJson.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2727
</PackageReference>
2828
<PackageReference Include="Fonlow.Testing.Integration" Version="1.2.5" />
29-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
29+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
3030
<PackageReference Include="xunit" Version="2.9.3" />
3131
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
3232
<PrivateAssets>all</PrivateAssets>

Tests/Poco2NgFormTests/Poco2NgFormTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
1414
<PackageReference Include="xunit" Version="2.9.3" />
1515
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

Tests/Poco2TsTestsCore/Poco2TsTestsCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
1515
<PackageReference Include="xunit" Version="2.9.3" />
1616
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
1717
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)