Skip to content

Commit 3beb8ae

Browse files
authored
Merge pull request #385 from ZjzMisaka/update-setup-dotnet-version-and-use-net-10
[*] update setup-dotnet version and use net 10
2 parents 41acbdb + ffb3acb commit 3beb8ae

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build_sign_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
shell: pwsh
2424

2525
- name: Setup .NET SDK
26-
uses: actions/setup-dotnet@v4
26+
uses: actions/setup-dotnet@v5
2727
with:
28-
dotnet-version: '8.0.x'
28+
dotnet-version: '10.0.x'
2929

3030
- name: Setup NuGet.exe
3131
uses: nuget/setup-nuget@v2.0.1

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
run: |
2323
echo "${{ secrets.SNK_BASE64 }}" | base64 -d > PowerThreadPool.snk
2424
- name: Setup .NET
25-
uses: actions/setup-dotnet@v4
25+
uses: actions/setup-dotnet@v5
2626
with:
27-
dotnet-version: 9.0.x
27+
dotnet-version: 10.0.x
2828
- name: Restore dependencies
2929
run: dotnet restore PowerThreadPool/PowerThreadPool.csproj
3030
- name: Build
@@ -40,9 +40,9 @@ jobs:
4040
run: |
4141
echo "${{ secrets.SNK_BASE64 }}" | base64 -d > PowerThreadPool.snk
4242
- name: Setup .NET
43-
uses: actions/setup-dotnet@v4
43+
uses: actions/setup-dotnet@v5
4444
with:
45-
dotnet-version: 9.0.x
45+
dotnet-version: 10.0.x
4646
- name: Run Tests and Generate TRX Report
4747
run: dotnet test UnitTest/UnitTest.csproj --logger "trx;LogFileName=test-results.trx" --collect:"XPlat Code Coverage" --settings coverage.runsettings
4848
- name: Publish Unit Test Results

0 commit comments

Comments
 (0)