Skip to content

Commit 8544486

Browse files
committed
Fix
1 parent cd51469 commit 8544486

File tree

1 file changed

+6
-18
lines changed

1 file changed

+6
-18
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,14 @@ jobs:
2222
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
25-
- name: Setup .NET Core 7.x
25+
- name: Setup .NET Core 8.x
2626
uses: actions/setup-dotnet@v4
2727
with:
28-
dotnet-version: '7.x'
28+
dotnet-version: '8.x'
2929
- name: Install dependencies
3030
run: dotnet restore ${{ github.workspace }}/Source/EasyNetQ.Management.Client.sln
3131
- name: Check formatting
3232
run: dotnet format --no-restore --verify-no-changes --severity warn ./Source/EasyNetQ.Management.Client.sln || (echo "Run 'dotnet format' to fix issues" && exit 1)
33-
- name: Setup MSBuild 17.9
34-
uses: microsoft/setup-msbuild@v1.1
35-
with:
36-
vs-version: '[17.9, 18.0)'
3733
- name: Build
3834
run: dotnet build ${{ github.workspace }}/Source/EasyNetQ.Management.Client.sln --configuration Release
3935
- name: Tests
@@ -60,16 +56,12 @@ jobs:
6056
uses: actions/checkout@v4
6157
with:
6258
fetch-depth: 0
63-
- name: Setup .NET Core 7.x
59+
- name: Setup .NET Core 8.x
6460
uses: actions/setup-dotnet@v4
6561
with:
66-
dotnet-version: 7.x
62+
dotnet-version: 8.x
6763
- name: Install dependencies
6864
run: dotnet restore ${{ github.workspace }}/Source/EasyNetQ.Management.Client.sln
69-
- name: Setup MSBuild 17.9
70-
uses: microsoft/setup-msbuild@v1.1
71-
with:
72-
vs-version: '[17.9, 18.0)'
7365
- name: Build
7466
run: dotnet build ${{ github.workspace }}/Source/EasyNetQ.Management.Client.sln --configuration Release
7567
- name: Integration Tests
@@ -88,16 +80,12 @@ jobs:
8880
uses: actions/checkout@v4
8981
with:
9082
fetch-depth: 0
91-
- name: Setup .NET Core 7.x
83+
- name: Setup .NET Core 8.x
9284
uses: actions/setup-dotnet@v4
9385
with:
94-
dotnet-version: '7.x'
86+
dotnet-version: '8.x'
9587
- name: Install dependencies
9688
run: dotnet restore ${{ github.workspace }}/Source/EasyNetQ.Management.Client.sln
97-
- name: Setup MSBuild 17.9
98-
uses: microsoft/setup-msbuild@v1.1
99-
with:
100-
vs-version: '[17.9, 18.0)'
10189
- name: Build
10290
run: dotnet build ${{ github.workspace }}/Source/EasyNetQ.Management.Client.sln --configuration Release
10391
- name: Pack

0 commit comments

Comments
 (0)