From 3042a9caa9db1f70522b52c588dbd4aa9d4c88c1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 15 Mar 2026 19:18:36 +0000 Subject: [PATCH 1/2] chore: remove EOL netcoreapp3.1 test invocation from build script The test project (SqlClient.Tests.fsproj) targets net8.0 and net462 only; it has never targeted netcoreapp3.1. Running dotnet test against a framework the project does not target is a no-op at best and a spurious warning at worst. .NET Core 3.1 reached end-of-life in December 2022. Remove the dead invocation so the build script only tests against the two supported frameworks: net462 (for .NET Framework) and net8.0 (for modern .NET). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- build/build.fs | 1 - 1 file changed, 1 deletion(-) diff --git a/build/build.fs b/build/build.fs index 915563f1..18b14dc2 100644 --- a/build/build.fs +++ b/build/build.fs @@ -285,7 +285,6 @@ Target.create "RunTests" (fun _ -> } try DotNet.test (dnTestOptions "net462") testSlnPath - DotNet.test (dnTestOptions "netcoreapp3.1") testProjectPath DotNet.test (dnTestOptions "net8.0") testProjectPath with | ex -> From e30617514b6ae92eb46536ff9e0c0c1f0c7f6beb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 15 Mar 2026 19:24:51 +0000 Subject: [PATCH 2/2] ci: trigger checks