We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec9428 commit dd1d11bCopy full SHA for dd1d11b
2 files changed
.github/workflows/build-and-test.yaml
@@ -17,14 +17,15 @@ jobs:
17
strategy:
18
fail-fast: false
19
matrix:
20
- DOTNET_VERSION: ["9.0.x", "8.0.x"]
+ DOTNET_VERSION: ["10.0.x", "9.0.x", "8.0.x"]
21
22
steps:
23
- uses: actions/checkout@v4
24
- name: Setup .NET
25
uses: actions/setup-dotnet@v4
26
with:
27
dotnet-version: |
28
+ 10.0.x
29
9.0.x
30
8.0.x
31
@@ -39,6 +40,9 @@ jobs:
39
40
- if: matrix.DOTNET_VERSION == '9.0.x'
41
run: echo "DOTNET_TFM=net9.0" >> $GITHUB_ENV
42
43
+ - if: matrix.DOTNET_VERSION == '10.0.x'
44
+ run: echo "DOTNET_TFM=net10.0" >> $GITHUB_ENV
45
+
46
- name: Restore dependencies
47
run: dotnet restore
48
.github/workflows/release.yaml
@@ -6,7 +6,7 @@ on:
6
- "v[0-9]+.[0-9]+.[0-9]+*"
7
8
env:
9
- DOTNET_VERSION: "9.0.x"
+ DOTNET_VERSION: "10.0.x"
10
DOTNET_NOLOGO: true
11
12
jobs:
0 commit comments