Skip to content

Commit

Permalink
Add .NET 8 setup to build workflow and disable restore during rebuild
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Hofmann <[email protected]>
  • Loading branch information
hoffe86 committed Dec 15, 2024
1 parent 77e6479 commit 32f19f2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ jobs:
- name: setup-msbuild
uses: microsoft/setup-msbuild@v2

- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x.x'

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -97,7 +102,8 @@ jobs:
-property:AppxBundle=Always `
-property:UapAppxPackageBuildMode=StoreUpload `
-property:Configuration="${{inputs.build_configuration}}" `
-target:Rebuild
-target:Rebuild `
-restore:false
- name: End SonarQube analyze
env:
Expand Down

0 comments on commit 32f19f2

Please sign in to comment.