diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71e70e4..940a4fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,6 +61,7 @@ jobs: run: >- dotnet build ${{ env.MAIN_PROJECT }} --configuration ${{ env.CONFIGURATION }} + --framework net10.0 --runtime ${{ matrix.runtime }} --no-restore --no-incremental @@ -71,6 +72,7 @@ jobs: run: >- dotnet build ${{ env.TEST_PROJECT }} --configuration ${{ env.CONFIGURATION }} + --framework net10.0 --runtime ${{ matrix.runtime }} --no-restore --no-incremental @@ -81,6 +83,7 @@ jobs: run: >- dotnet test ${{ env.TEST_PROJECT }} --configuration ${{ env.CONFIGURATION }} + --framework net10.0 --runtime ${{ matrix.runtime }} --no-build --verbosity normal diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12c1f25..e4ac494 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,6 +62,7 @@ jobs: run: >- dotnet build ${{ env.SOLUTION_PATH }} --configuration ${{ env.CONFIGURATION }} + --framework net10.0 --runtime ${{ matrix.runtime }} --no-restore --no-incremental @@ -73,6 +74,7 @@ jobs: run: >- dotnet test ${{ env.SOLUTION_PATH }} --configuration ${{ env.CONFIGURATION }} + --framework net10.0 --runtime ${{ matrix.runtime }} --no-build --verbosity normal