We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26a02cf commit 2bfe60eCopy full SHA for 2bfe60e
.github/workflows/dotnet.yaml
@@ -26,6 +26,13 @@ jobs:
26
- name: .net SxS
27
run: |
28
rsync -a ${DOTNET_ROOT/3.1.200/2.1.300}/* $DOTNET_ROOT/
29
+
30
+ - name: Setup side by side .NET SDKs on Windows
31
+ if: matrix.os == 'windows-latest'
32
+ run: |
33
+ SET DOTNET_21_ROOT=%DOTNET_ROOT:3.1.200=2.1.300%
34
+ xcopy /s /y /d %DOTNET_21_ROOT% %DOTNET_ROOT%
35
+ shell: cmd
36
- run: dotnet build --configuration Release
37
- name: test with dotnet
38
run: dotnet test /p:CollectCoverage=true /p:ExcludeByFile=\"**/KubernetesClient/generated/**/*.cs\" /p:CoverletOutputFormat="cobertura"
0 commit comments