From ded1964aac84a902d0fed883e4b46cd68919209d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:59:27 +0000 Subject: [PATCH 1/5] Initial plan From 1b146045e3fcfcd7d18985fb86188441c3fc0b9d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 11:00:47 +0000 Subject: [PATCH 2/5] Update workflow to include correct NuGet components Co-authored-by: JusterZhu <11714536+JusterZhu@users.noreply.github.com> --- .github/workflows/dotnet-ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-ci.yaml b/.github/workflows/dotnet-ci.yaml index 779e5336..aed0b829 100644 --- a/.github/workflows/dotnet-ci.yaml +++ b/.github/workflows/dotnet-ci.yaml @@ -31,9 +31,10 @@ jobs: $projects = @( "GeneralUpdate.Bowl", "GeneralUpdate.ClientCore", - "GeneralUpdate.Common", "GeneralUpdate.Core", - "GeneralUpdate.Differential" + "GeneralUpdate.Differential", + "GeneralUpdate.Drivelution", + "GeneralUpdate.Extension" ) foreach ($project in $projects) { From 01c9d12b057c5488363599a9446ade7342424fd4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 11:01:25 +0000 Subject: [PATCH 3/5] Fix YAML formatting issues Co-authored-by: JusterZhu <11714536+JusterZhu@users.noreply.github.com> --- .github/workflows/dotnet-ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-ci.yaml b/.github/workflows/dotnet-ci.yaml index aed0b829..ae0e51a3 100644 --- a/.github/workflows/dotnet-ci.yaml +++ b/.github/workflows/dotnet-ci.yaml @@ -36,7 +36,7 @@ jobs: "GeneralUpdate.Drivelution", "GeneralUpdate.Extension" ) - + foreach ($project in $projects) { dotnet pack ./src/c#/$project/$project.csproj ` -c Release ` @@ -54,4 +54,4 @@ jobs: name: Release v${{ github.event.inputs.version }} files: ./nupkgs/*.nupkg env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 591c8bd53c66a7c43f606427deba4c1f91820581 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 11:06:58 +0000 Subject: [PATCH 4/5] Add GeneralUpdate.Common back to the component list Co-authored-by: JusterZhu <11714536+JusterZhu@users.noreply.github.com> --- .github/workflows/dotnet-ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dotnet-ci.yaml b/.github/workflows/dotnet-ci.yaml index ae0e51a3..bffcc2ff 100644 --- a/.github/workflows/dotnet-ci.yaml +++ b/.github/workflows/dotnet-ci.yaml @@ -31,6 +31,7 @@ jobs: $projects = @( "GeneralUpdate.Bowl", "GeneralUpdate.ClientCore", + "GeneralUpdate.Common", "GeneralUpdate.Core", "GeneralUpdate.Differential", "GeneralUpdate.Drivelution", From 289aaf346db04f31cddc2188b968938714d57e68 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 11:09:53 +0000 Subject: [PATCH 5/5] Update workflow to use .NET 10 for Drivelution support Co-authored-by: JusterZhu <11714536+JusterZhu@users.noreply.github.com> --- .github/workflows/dotnet-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-ci.yaml b/.github/workflows/dotnet-ci.yaml index bffcc2ff..83575f95 100644 --- a/.github/workflows/dotnet-ci.yaml +++ b/.github/workflows/dotnet-ci.yaml @@ -18,7 +18,7 @@ jobs: - name: 安装.NET SDK uses: actions/setup-dotnet@v4 with: - dotnet-version: '9.0.x' # 与现有CI配置保持一致 + dotnet-version: '10.0.x' # 支持GeneralUpdate.Drivelution的.NET 10目标框架 - name: 恢复依赖 run: dotnet restore ./src/c#/GeneralUpdate.sln # 使用解决方案统一恢复