@@ -17,36 +17,36 @@ jobs:
1717 - name : Setup .NET
1818 uses : actions/setup-dotnet@v4
1919 with :
20- dotnet-version : 9 .0.x
20+ dotnet-version : 10 .0.x
2121
2222 - name : Build Unit Tests .NET
23- run : dotnet build -f net9 .0 test/Renci.SshNet.Tests/
23+ run : dotnet build -f net10 .0 test/Renci.SshNet.Tests/
2424
2525 - name : Build IntegrationTests .NET
26- run : dotnet build -f net9 .0 test/Renci.SshNet.IntegrationTests/
26+ run : dotnet build -f net10 .0 test/Renci.SshNet.IntegrationTests/
2727
2828 - name : Run Unit Tests .NET
2929 run : |
3030 dotnet test \
31- -f net9 .0 \
31+ -f net10 .0 \
3232 --no-build \
3333 --logger "console;verbosity=normal" \
3434 --logger GitHubActions \
3535 -p:CollectCoverage=true \
3636 -p:CoverletOutputFormat=cobertura \
37- -p:CoverletOutput=../../coverlet/linux_unit_test_net_9_coverage .xml \
37+ -p:CoverletOutput=../../coverlet/linux_unit_test_net_10_coverage .xml \
3838 test/Renci.SshNet.Tests/
3939
4040 - name : Run Integration Tests .NET
4141 run : |
4242 dotnet test \
43- -f net9 .0 \
43+ -f net10 .0 \
4444 --no-build \
4545 --logger "console;verbosity=normal" \
4646 --logger GitHubActions \
4747 -p:CollectCoverage=true \
4848 -p:CoverletOutputFormat=cobertura \
49- -p:CoverletOutput=../../coverlet/linux_integration_test_net_9_coverage .xml \
49+ -p:CoverletOutput=../../coverlet/linux_integration_test_net_10_coverage .xml \
5050 test/Renci.SshNet.IntegrationTests/
5151
5252 - name : Archive Coverlet Results
6666 - name : Setup .NET
6767 uses : actions/setup-dotnet@v4
6868 with :
69- dotnet-version : 9 .0.x
69+ dotnet-version : 10 .0.x
7070
7171 - name : Build Solution
7272 run : dotnet build Renci.SshNet.sln
@@ -86,13 +86,13 @@ jobs:
8686 - name : Run Unit Tests .NET
8787 run : |
8888 dotnet test `
89- -f net9 .0 `
89+ -f net10 .0 `
9090 --no-build `
9191 --logger "console;verbosity=normal" `
9292 --logger GitHubActions `
9393 -p:CollectCoverage=true `
9494 -p:CoverletOutputFormat=cobertura `
95- -p:CoverletOutput=../../coverlet/windows_unit_test_net_9_coverage .xml `
95+ -p:CoverletOutput=../../coverlet/windows_unit_test_net_10_coverage .xml `
9696 test/Renci.SshNet.Tests/
9797
9898 - name : Run Unit Tests .NET Framework
0 commit comments