@@ -17,39 +17,39 @@ jobs:
1717 - name : Setup .NET
1818 uses : actions/setup-dotnet@v4
1919 with :
20- dotnet-version : 8 .0.x
20+ dotnet-version : 9 .0.x
2121
2222 - name : Build Unit Tests .NET
23- run : dotnet build -f net8 .0 test/Renci.SshNet.Tests/
23+ run : dotnet build -f net9 .0 test/Renci.SshNet.Tests/
2424
2525 - name : Build IntegrationTests .NET
26- run : dotnet build -f net8 .0 test/Renci.SshNet.IntegrationTests/
26+ run : dotnet build -f net9 .0 test/Renci.SshNet.IntegrationTests/
2727
2828 - name : Build IntegrationTests .NET Framework
2929 run : dotnet build -f net48 test/Renci.SshNet.IntegrationTests/
3030
3131 - name : Run Unit Tests .NET
3232 run : |
3333 dotnet test \
34- -f net8 .0 \
34+ -f net9 .0 \
3535 --no-build \
3636 --logger "console;verbosity=normal" \
3737 --logger GitHubActions \
3838 -p:CollectCoverage=true \
3939 -p:CoverletOutputFormat=cobertura \
40- -p:CoverletOutput=../../coverlet/linux_unit_test_net_8_coverage .xml \
40+ -p:CoverletOutput=../../coverlet/linux_unit_test_net_9_coverage .xml \
4141 test/Renci.SshNet.Tests/
4242
4343 - name : Run Integration Tests .NET
4444 run : |
4545 dotnet test \
46- -f net8 .0 \
46+ -f net9 .0 \
4747 --no-build \
4848 --logger "console;verbosity=normal" \
4949 --logger GitHubActions \
5050 -p:CollectCoverage=true \
5151 -p:CoverletOutputFormat=cobertura \
52- -p:CoverletOutput=../../coverlet/linux_integration_test_net_8_coverage .xml \
52+ -p:CoverletOutput=../../coverlet/linux_integration_test_net_9_coverage .xml \
5353 test/Renci.SshNet.IntegrationTests/
5454
5555 # Also run a subset of the integration tests targeting netfx using mono. This is a temporary measure to get
@@ -111,13 +111,13 @@ jobs:
111111 - name : Run Unit Tests .NET
112112 run : |
113113 dotnet test `
114- -f net8 .0 `
114+ -f net9 .0 `
115115 --no-build `
116116 --logger "console;verbosity=normal" `
117117 --logger GitHubActions `
118118 -p:CollectCoverage=true `
119119 -p:CoverletOutputFormat=cobertura `
120- -p:CoverletOutput=../../coverlet/windows_unit_test_net_8_coverage .xml `
120+ -p:CoverletOutput=../../coverlet/windows_unit_test_net_9_coverage .xml `
121121 test/Renci.SshNet.Tests/
122122
123123 - name : Run Unit Tests .NET Framework
0 commit comments