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 5ab7c0b commit 6497869Copy full SHA for 6497869
.github/workflows/workflows.yaml
@@ -58,12 +58,12 @@ jobs:
58
# Build the project with defines
59
- name: Build project
60
run: |
61
- dotnet build --configuration ${{ matrix.configuration }} -p:DefineConstants="${{ matrix.define }}"
+ dotnet build --configuration ${{ matrix.configuration }} --framework net8.0 -p:DefineConstants="${{ matrix.define }}"
62
63
# Run tests
64
- name: Run tests
65
66
- dotnet test --configuration ${{ matrix.configuration }} -p:DefineConstants="${{ matrix.define }}"
+ dotnet test --configuration ${{ matrix.configuration }} --framework net8.0 -p:DefineConstants="${{ matrix.define }}"
67
68
- name: Upload dotnet test results
69
uses: actions/upload-artifact@v4
0 commit comments