@@ -18,33 +18,33 @@ jobs:
1818 uses : actions/setup-dotnet@v4
1919
2020 - name : Build Unit Tests .NET
21- run : dotnet build -f net9 .0 test/Renci.SshNet.Tests/
21+ run : dotnet build -f net10 .0 test/Renci.SshNet.Tests/
2222
2323 - name : Build IntegrationTests .NET
24- run : dotnet build -f net9 .0 test/Renci.SshNet.IntegrationTests/
24+ run : dotnet build -f net10 .0 test/Renci.SshNet.IntegrationTests/
2525
2626 - name : Run Unit Tests .NET
2727 run : |
2828 dotnet test \
29- -f net9 .0 \
29+ -f net10 .0 \
3030 --no-build \
3131 --logger "console;verbosity=normal" \
3232 --logger GitHubActions \
3333 -p:CollectCoverage=true \
3434 -p:CoverletOutputFormat=cobertura \
35- -p:CoverletOutput=../../coverlet/linux_unit_test_net_9_coverage .xml \
35+ -p:CoverletOutput=../../coverlet/linux_unit_test_net_10_coverage .xml \
3636 test/Renci.SshNet.Tests/
3737
3838 - name : Run Integration Tests .NET
3939 run : |
4040 dotnet test \
41- -f net9 .0 \
41+ -f net10 .0 \
4242 --no-build \
4343 --logger "console;verbosity=normal" \
4444 --logger GitHubActions \
4545 -p:CollectCoverage=true \
4646 -p:CoverletOutputFormat=cobertura \
47- -p:CoverletOutput=../../coverlet/linux_integration_test_net_9_coverage .xml \
47+ -p:CoverletOutput=../../coverlet/linux_integration_test_net_10_coverage .xml \
4848 test/Renci.SshNet.IntegrationTests/
4949
5050 - name : Archive Coverlet Results
@@ -82,13 +82,13 @@ jobs:
8282 - name : Run Unit Tests .NET
8383 run : |
8484 dotnet test `
85- -f net9 .0 `
85+ -f net10 .0 `
8686 --no-build `
8787 --logger "console;verbosity=normal" `
8888 --logger GitHubActions `
8989 -p:CollectCoverage=true `
9090 -p:CoverletOutputFormat=cobertura `
91- -p:CoverletOutput=../../coverlet/windows_unit_test_net_9_coverage .xml `
91+ -p:CoverletOutput=../../coverlet/windows_unit_test_net_10_coverage .xml `
9292 test/Renci.SshNet.Tests/
9393
9494 - name : Run Unit Tests .NET Framework
0 commit comments