@@ -55,31 +55,34 @@ jobs:
5555 dotnet-version : |-
5656 8.0.414
5757 9.0.305
58- 10.0.x
58+ 10.0.100-rc.2.25502.107
5959 - name : Restore
6060 run : dotnet restore ../
6161 - name : Verify Formatting
6262 run : dotnet format ../ --verify-no-changes --no-restore
6363 - name : Test - IdentityModel.Tests
6464 if : matrix.os != 'windows-latest'
6565 run : dotnet test -c Release test/IdentityModel.Tests --logger "console;verbosity=normal" --logger "trx;LogFileName=IdentityModel.Tests.trx" --collect:"XPlat Code Coverage"
66- - name : Test - IdentityModel.Tests-net481
67- if : matrix.os == 'windows-latest'
68- run : dotnet test -c Release test/IdentityModel.Tests --logger "console;verbosity=normal" --logger "trx;LogFileName=IdentityModel.Tests-net481.trx" --collect:"XPlat Code Coverage" --framework net481
66+ # This is different from what WorkflowGen would generate
67+ # We remove the 481 Target Framework because we had issues building with net10 RC2
68+
69+ # - name: Test - IdentityModel.Tests-net481
70+ # if: matrix.os == 'windows-latest'
71+ # run: dotnet test -c Release test/IdentityModel.Tests --logger "console;verbosity=normal" --logger "trx;LogFileName=IdentityModel.Tests-net481.trx" --collect:"XPlat Code Coverage" --framework net481
6972 - name : Test report
7073 if : matrix.os != 'windows-latest'
7174 uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
7275 with :
7376 name : test-results
7477 path : identity-model/test/IdentityModel.Tests/TestResults/IdentityModel.Tests.trx
7578 retention-days : 5
76- - name : Test report-net481
77- if : matrix.os == 'windows-latest'
78- uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
79- with :
80- name : test-results-net481
81- path : identity-model/test/IdentityModel.Tests/TestResults/IdentityModel.Tests-net481.trx
82- retention-days : 5
79+ # - name: Test report-net481
80+ # if: matrix.os == 'windows-latest'
81+ # uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
82+ # with:
83+ # name: test-results-net481
84+ # path: identity-model/test/IdentityModel.Tests/TestResults/IdentityModel.Tests-net481.trx
85+ # retention-days: 5
8386 - name : Tool restore
8487 run : dotnet tool restore
8588 - name : Pack IdentityModel
0 commit comments