From 4454853c4b54d7fe05a592878a875eec59a22dd7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 21 Dec 2025 17:52:00 +0000 Subject: [PATCH 1/2] Initial plan From e9a606561cf7e770a3f3c3bd1f5e43e36e4cde1b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 21 Dec 2025 17:54:10 +0000 Subject: [PATCH 2/2] Fix release.yml Test step by adding explicit framework flags Co-authored-by: PhenX <42170+PhenX@users.noreply.github.com> --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9372b13..dc98712 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,8 +41,11 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore /p:Version=$VERSION - - name: Test - run: dotnet test --configuration Release --no-restore --no-build --verbosity normal + - name: Test net8.0 + run: dotnet test --configuration Release --no-restore --no-build --verbosity normal --framework net8.0 + + - name: Test net9.0 + run: dotnet test --configuration Release --no-restore --no-build --verbosity normal --framework net9.0 - name: Pack nuget packages run: dotnet pack --configuration Release --no-restore --no-build --output nupkgs /p:PackageVersion=$VERSION