Skip to content

Commit

Permalink
Merge pull request #145 from bijington/feature/sl-fix-assembly-version
Browse files Browse the repository at this point in the history
Set the assembly and file version
  • Loading branch information
bijington authored May 23, 2024
2 parents d839b7e + 4d706ab commit 61facd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nuget-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: dotnet restore .\Source\Expressive\Expressive.csproj

- name: Build
run: dotnet build --configuration Release --no-restore .\Source\Expressive\Expressive.csproj /p:Version=${{ steps.get_version.outputs.version-without-v }}
run: dotnet build --configuration Release --no-restore .\Source\Expressive\Expressive.csproj /p:Version=${{ steps.get_version.outputs.version-without-v }} /p:AssemblyVersion=${{ steps.get_version.outputs.version-without-v }} /p:FileVersion=${{ steps.get_version.outputs.version-without-v }}

- name: Pack
run: dotnet pack .\Source\Expressive\Expressive.csproj -c Release /p:Version=${{ steps.get_version.outputs.version-without-v }} --no-build --output .
Expand Down

0 comments on commit 61facd2

Please sign in to comment.