From 1a24d626b223a3a7b1d52d9713bbcdd3b656ab00 Mon Sep 17 00:00:00 2001 From: Josh Hiles <11314656+JoshHiles@users.noreply.github.com> Date: Wed, 24 Sep 2025 10:33:24 +0100 Subject: [PATCH 1/2] test --- ReleaseNotes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index d802ffc..2baf1cf 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,5 @@ ### New in 2.0.1 - +ada **Features** - Added targeting for .NET Standard 2.0, .NET 6 and .NET 8 From a27572c1fb9991cee76fd4ef34ffd609ebe76d3e Mon Sep 17 00:00:00 2001 From: Josh Hiles <11314656+JoshHiles@users.noreply.github.com> Date: Wed, 24 Sep 2025 18:02:47 +0100 Subject: [PATCH 2/2] ci: fix setup-dotnet wildcard subdir cache path --- .github/workflows/release.yaml | 2 +- .github/workflows/unit-test.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 231c370..14c5cf5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,7 +26,7 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: 8.0.x - cache-dependency-path: subdir/packages.lock.json + cache-dependency-path: '**/packages.lock.json' - name: Restore run: dotnet restore diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index 3076a14..ca7ea20 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -35,7 +35,7 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: ${{ matrix.sdk }} - cache-dependency-path: subdir/packages.lock.json + cache-dependency-path: '**/packages.lock.json' - name: Restore run: dotnet restore