From 2789e86d218554899c117e90a76284f9096009c5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 30 Nov 2025 12:22:31 +0000 Subject: [PATCH] Update launch.json to use net10.0 instead of net8.0 Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com> --- .vscode/launch.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7bc14714..8171a42b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,7 +2,7 @@ "version": "0.2.0", "configurations": [ { - "name": "Debug Tests (net8.0)", + "name": "Debug Tests (net10.0)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", @@ -11,7 +11,7 @@ "test", "${workspaceFolder}/tests/SharpCompress.Test/SharpCompress.Test.csproj", "-f", - "net8.0", + "net10.0", "--no-build", "--verbosity=normal" ], @@ -20,7 +20,7 @@ "stopAtEntry": false }, { - "name": "Debug Specific Test (net8.0)", + "name": "Debug Specific Test (net10.0)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", @@ -29,7 +29,7 @@ "test", "${workspaceFolder}/tests/SharpCompress.Test/SharpCompress.Test.csproj", "-f", - "net8.0", + "net10.0", "--no-build", "--filter", "FullyQualifiedName~${input:testName}"