Skip to content

Commit bcda88e

Browse files
committed
Update VS Code launch configs to support new multi-target build
1 parent b9d6866 commit bcda88e

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

.vscode/launch.json

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,38 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"name": "Launch",
5+
"name": "Launch (.NET Framework 4.7.2)",
66
"type": "clr",
77
"request": "launch",
88
"preLaunchTask": "build",
9-
"program": "${workspaceFolder}/bin/DecodeWheaRecord/Debug/DecodeWheaRecord.exe",
9+
"program": "${workspaceFolder}/bin/DecodeWheaRecord/Debug/net472/DecodeWheaRecord.exe",
1010
"args": [],
1111
"cwd": "${workspaceFolder}",
1212
"stopAtEntry": false,
1313
"console": "internalConsole"
1414
},
1515
{
16-
"name": "Attach",
16+
"name": "Launch (.NET 8.0)",
17+
"type": "coreclr",
18+
"request": "launch",
19+
"preLaunchTask": "build",
20+
"program": "${workspaceFolder}/bin/DecodeWheaRecord/Debug/net8.0/DecodeWheaRecord.exe",
21+
"args": [],
22+
"cwd": "${workspaceFolder}",
23+
"stopAtEntry": false,
24+
"console": "internalConsole"
25+
},
26+
{
27+
"name": "Attach (.NET Framework)",
1728
"type": "clr",
1829
"request": "attach",
1930
"processId": "${command:pickProcess}"
31+
},
32+
{
33+
"name": "Attach (.NET Core)",
34+
"type": "coreclr",
35+
"request": "attach",
36+
"processId": "${command:pickProcess}"
2037
}
2138
]
2239
}

0 commit comments

Comments
 (0)