Skip to content

Commit

Permalink
ci: fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre58 committed May 6, 2024
1 parent 56a61af commit 661009f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
needs: [ gitversion ]
with:
name: Build
build-args: '/p:GitVersion=${{ needs.gitversion.outputs.full_version }} /p:VersionSuffix=${{ needs.gitversion.outputs.suffix_label }}'
build-args: '/p:Version=${{ needs.gitversion.outputs.full_version }}'
dotnet-test-logger: GitHubActions --no-build --no-restore
solution-path: .\src\MyIconCreator.sln
nugetFeedUrl: ${{ vars.PRIVATE_NUGET_API_SOURCE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
needs: [ gitversion ]
with:
name: Build
build-args: '/p:GitVersion=${{ needs.gitversion.outputs.full_version }} /p:VersionSuffix=${{ needs.gitversion.outputs.suffix_label }}'
build-args: '/p:Version=${{ needs.gitversion.outputs.full_version }}'
dotnet-test-logger: GitHubActions --no-build --no-restore
solution-path: .\src\MyIconCreator.sln
nugetFeedUrl: ${{ vars.PRIVATE_NUGET_API_SOURCE }}
Expand Down
1 change: 1 addition & 0 deletions src/Directory.build.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<!-- Configuration -->
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<BaseOutputPath>bin</BaseOutputPath>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
Expand Down

0 comments on commit 661009f

Please sign in to comment.