Skip to content

Commit 1040b41

Browse files
committed
Fixing so the PackageVersion is directly populated.
1 parent 30be7fb commit 1040b41

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
useConfigFile: true
3030

3131
- name: Pack
32-
run: dotnet pack -c Release --version-suffix ${{ steps.gitversion.outputs.nuGetVersion }}
32+
run: dotnet pack -c Release -p:PackageVersion=${{ steps.gitversion.outputs.nuGetVersion }} -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
3333

3434
- name: Publish
3535
if: github.event_name != 'pull_request' && (github.ref_name == 'master')

lib/Gotenberg.Sharp.Api.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Label="PackageInfo">
16-
<PackageVersion>2.0.0</PackageVersion>
16+
<PackageVersion>2.1.1</PackageVersion>
1717
<PackageTags>Gotenberg pdf C# ApiClient unoconv</PackageTags>
1818
<Description>
1919
C# API client for interacting with the Gotenberg v7 micro-service's API, a docker-powered stateless API for converting &amp; merging HTML, Markdown and Office documents to PDF. The client supports a configurable Polly retry policy with exponential back-off for handling transient exceptions.

0 commit comments

Comments
 (0)