From 7fe9ada38e1ba19bff2bb7f0b02209787aa13f54 Mon Sep 17 00:00:00 2001 From: Tamara Rivera Date: Fri, 14 Aug 2026 13:52:50 -0700 Subject: [PATCH 1/2] Change .NET SDK setup to use global.json Update the workflows to use global.json. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57f4a7c..25d9e95 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v6.0.0 with: - dotnet-version: 8.0.x + global-json-file: global.json - name: Build run: dotnet build src --configuration Release - name: Sign NuGet packages From abc44eecbfc4ea1c264ed6e41d0d9890a54c87b3 Mon Sep 17 00:00:00 2001 From: Tamara Rivera Date: Fri, 14 Aug 2026 13:55:15 -0700 Subject: [PATCH 2/2] Change .NET SDK version setup in CI workflow Update .NET SDK setup to use global.json for version. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 325e4e5..4452342 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v6.0.0 with: - dotnet-version: 8.0.x + global-json-file: global.json - name: Build run: dotnet build src --configuration Release - name: Run tests @@ -34,4 +34,4 @@ jobs: with: name: nugets path: nugets/* - retention-days: 1 \ No newline at end of file + retention-days: 1