Skip to content

Commit

Permalink
upgrade solution to net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenwezel committed Nov 4, 2024
1 parent 079607e commit df66bc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/BuildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Dir Listing (Win)
if: startsWith(matrix.os, 'windows')
Expand All @@ -100,7 +100,7 @@ jobs:
run: dotnet build --configuration=${{env.BUILD_CONFIGURATION}} --no-restore

- name: Run Unit Tests
run: dotnet test --framework net7.0 --results-directory test-results --logger junit --configuration=${{env.BUILD_CONFIGURATION}} --no-restore
run: dotnet test --framework net8.0 --results-directory test-results --logger junit --configuration=${{env.BUILD_CONFIGURATION}} --no-restore

- name: Dir Listing (Win) test-results
if: startsWith(matrix.os, 'windows')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PublishRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Install dependencies
run: dotnet restore
Expand Down

0 comments on commit df66bc7

Please sign in to comment.