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 afd1e39b88
commit 2789e86d21

8
.vscode/launch.json vendored
View File

@@ -2,7 +2,7 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Debug Tests (net8.0)", "name": "Debug Tests (net10.0)",
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "build", "preLaunchTask": "build",
@@ -11,7 +11,7 @@
"test", "test",
"${workspaceFolder}/tests/SharpCompress.Test/SharpCompress.Test.csproj", "${workspaceFolder}/tests/SharpCompress.Test/SharpCompress.Test.csproj",
"-f", "-f",
"net8.0", "net10.0",
"--no-build", "--no-build",
"--verbosity=normal" "--verbosity=normal"
], ],
@@ -20,7 +20,7 @@
"stopAtEntry": false "stopAtEntry": false
}, },
{ {
"name": "Debug Specific Test (net8.0)", "name": "Debug Specific Test (net10.0)",
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "build", "preLaunchTask": "build",
@@ -29,7 +29,7 @@
"test", "test",
"${workspaceFolder}/tests/SharpCompress.Test/SharpCompress.Test.csproj", "${workspaceFolder}/tests/SharpCompress.Test/SharpCompress.Test.csproj",
"-f", "-f",
"net8.0", "net10.0",
"--no-build", "--no-build",
"--filter", "--filter",
"FullyQualifiedName~${input:testName}" "FullyQualifiedName~${input:testName}"