Skip to content

Commit c782e31

Browse files
committed
Updated GitHub Actions to support .NET 8 and .NET 9
- Added .NET 8 and 9 to GitHub Actions workflow. - Fixed build failure due to missing .NET 8 SDK.
1 parent c6f85ca commit c782e31

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/BUILD_TEST_DSTV_NET.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ jobs:
1414
- name: Setup .NET
1515
uses: actions/setup-dotnet@v3
1616
with:
17-
dotnet-version: 7.0.x
17+
dotnet-version: |
18+
6.0.x
19+
7.0.x
20+
8.0.x
21+
9.0.x
1822
- name: Restore dependencies
1923
run: dotnet restore DSTV.Net.sln
2024
- name: Build

.github/workflows/PUBLISH_PACKAGES.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ jobs:
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v3
1919
with:
20-
dotnet-version: 7.0.x
20+
dotnet-version: |
21+
6.0.x
22+
7.0.x
23+
8.0.x
24+
9.0.x
2125
- name: Restore dependencies
2226
run: dotnet restore
2327
- name: Test

0 commit comments

Comments
 (0)