From bbb889b1cda285130496f14b996d201a634220e8 Mon Sep 17 00:00:00 2001 From: Tamara Rivera Date: Fri, 14 Aug 2026 16:35:39 -0700 Subject: [PATCH 1/2] Change .NET SDK setup to use global.json Updated the .NET SDK setup on workflows to use global.json. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f10827..9601e69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,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: Upload packages From 280cbf0ce7b0b99a2e5a8ee18e7c479633dc6fdf Mon Sep 17 00:00:00 2001 From: Tamara Rivera Date: Fri, 14 Aug 2026 16:36:19 -0700 Subject: [PATCH 2/2] Update .NET SDK setup 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 a9d932e..a182722 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,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