Update launch.json to use net10.0 instead of net8.0

Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-11-30 12:22:31 +00:00
parent 64a1cc68e1
commit 1e90d69912

8
.vscode/launch.json vendored
View File

@@ -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}"