Skip to content

Commit b488403

Browse files
github-actions[bot]Copilot
authored andcommitted
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>
1 parent 82de73a commit b488403

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

build/build.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,6 @@ Target.create "RunTests" (fun _ ->
285285
}
286286
try
287287
DotNet.test (dnTestOptions "net462") testSlnPath
288-
DotNet.test (dnTestOptions "netcoreapp3.1") testProjectPath
289288
DotNet.test (dnTestOptions "net8.0") testProjectPath
290289
with
291290
| ex ->

0 commit comments

Comments
 (0)