|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net7.0;net6.0;net5.0;netstandard2.1;netstandard2.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>net8.0;net7.0;net6.0;net5.0;netstandard2.1;netstandard2.0</TargetFrameworks> |
5 | 5 | <LangVersion>latest</LangVersion> |
6 | 6 | <AssemblyName>Gotenberg.Sharp.API.Client</AssemblyName> |
7 | 7 | <RootNamespace>Gotenberg.Sharp.API.Client</RootNamespace> |
|
13 | 13 | </PropertyGroup> |
14 | 14 |
|
15 | 15 | <PropertyGroup Label="PackageInfo"> |
16 | | - <PackageVersion>2.2.2</PackageVersion> |
| 16 | + <PackageVersion>2.3.0</PackageVersion> |
17 | 17 | <PackageTags>Gotenberg pdf C# ApiClient unoconv</PackageTags> |
18 | 18 | <Description> |
19 | 19 | C# API client for interacting with the Gotenberg v7 & v8 micro-service's API, a docker-powered stateless API for converting & merging HTML, Markdown and Office documents to PDF. The client supports a configurable Polly retry policy with exponential back-off for handling transient exceptions. |
20 | 20 | </Description> |
21 | 21 | <IncludeSymbols>True</IncludeSymbols> |
22 | 22 | <PackageReleaseNotes> |
| 23 | + v2.3 - Added Convert Page 'ExportFormFields' flag support (Gotenberg v8.3+ Only). Added .NET 8 target. |
23 | 24 | v2.2 - Added 'SkipNetworkIdle' flag support (Gotenberg v8+ Only). Thank you for the PR @guillaumeduhr! Upgraded nugets to latest. Added .NET 7.0 support. |
24 | 25 | v2.1 - Added Trace Support. Fixed extra webhook header support. |
25 | 26 | v2.0 - Upgraded to support Gotenberg v7 -- this version no longer works with Gotenberg v6. |
|
84 | 85 | <PackageReference Include="Microsoft.Extensions.Http.Polly" Version="7.0.0" /> |
85 | 86 | </ItemGroup> |
86 | 87 |
|
| 88 | + <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| 89 | + <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> |
| 90 | + <PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" /> |
| 91 | + <PackageReference Include="Microsoft.Extensions.Http.Polly" Version="8.0.4" /> |
| 92 | + </ItemGroup> |
| 93 | + |
87 | 94 | <ItemGroup> |
88 | 95 | <None Include="..\README.md" Pack="true" PackagePath="\" /> |
89 | 96 | <None Include="..\.editorconfig" Link=".editorconfig" /> |
|
0 commit comments