From 490f2897c2b0352eee8fab30ca8ee3db4438325d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Jun 2026 14:38:26 +0000 Subject: [PATCH 1/2] Initial plan From 2a19208d48760fbbe45e07e98976cb2699df2278 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Jun 2026 14:39:21 +0000 Subject: [PATCH 2/2] ci: add NuGet package cache to speed up CI --- .github/workflows/dotnet.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index f00ab86..607187e 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -36,6 +36,14 @@ jobs: with: dotnet-version: ${{ matrix.dotnet-version }} + - name: Cache NuGet packages + uses: actions/cache@v4 + with: + path: ~/.nuget/packages + key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }} + restore-keys: | + nuget-${{ runner.os }}- + - name: Restore run: dotnet restore