From ffec97d81defa0baeb05eba7909c97861894e7a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 12 Mar 2026 13:31:20 +0000 Subject: [PATCH 1/2] ci: update build script target from net6.0 to net8.0 The GitHub Actions Windows runner no longer has .NET 6 available, causing all CI builds to fail with 'You must install or update .NET to run this application'. .NET 8 is available on the runner, so updating the FAKE build script target to net8.0 fixes the CI pipeline. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- build/build.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.fsproj b/build/build.fsproj index 3686fb1a..5b2f053e 100644 --- a/build/build.fsproj +++ b/build/build.fsproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 From 1532e2e789e2477422f9d4af16741bf2e19b701c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 12 Mar 2026 13:38:12 +0000 Subject: [PATCH 2/2] ci: trigger checks