Skip to content

Commit 29f5b2a

Browse files
committed
Update build tasks for .NET 10.
1 parent 6434b2d commit 29f5b2a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
uses: actions/setup-dotnet@v4
1616
with:
1717
dotnet-version: |
18-
6.0.x
19-
7.0.x
2018
8.0.x
19+
10.0.x
2120
- name: Build and test
2221
run: dotnet msbuild ./default.proj
2322
- name: Upload coverage

.github/workflows/dotnet-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v4
9-
- name: Setup .NET 8
9+
- name: Setup .NET 10
1010
uses: actions/setup-dotnet@v4
1111
with:
12-
dotnet-version: 8.0.x
12+
dotnet-version: 10.0.x
1313
- name: dotnet format
1414
run: dotnet format Autofac.sln --verify-no-changes

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup .NET
1313
uses: actions/setup-dotnet@v4
1414
with:
15-
dotnet-version: 8.0.x
15+
dotnet-version: 10.0.x
1616
- name: Download package artifacts
1717
uses: actions/download-artifact@v4
1818
with:

0 commit comments

Comments
 (0)