From 2b00db0b3aabce0cfa1beabe18c2792f16b3fe85 Mon Sep 17 00:00:00 2001 From: Chris Wolfgang <210299580+Chris-Wolfgang@users.noreply.github.com> Date: Mon, 27 Apr 2026 18:11:21 -0400 Subject: [PATCH] Add .NET Core 3.1 to release workflow setup-dotnet The test project targets netcoreapp3.1 but release.yaml only installed .NET 5.0+, causing testhost to fail at runtime with "You must install or update .NET to run this application." pr.yaml already installs 3.1.x; this aligns release.yaml with that. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 56806ef..77484b2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,6 +27,7 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: | + 3.1.x 5.0.x 6.0.x 7.0.x @@ -300,6 +301,7 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: | + 3.1.x 5.0.x 6.0.x 7.0.x @@ -516,6 +518,7 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: | + 3.1.x 5.0.x 6.0.x 7.0.x