Skip to content

Commit cee8b72

Browse files
committed
Add prelaunch tasks for debugging
1 parent 7c92579 commit cee8b72

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.vscode/launch.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,25 @@
55
"name": "Api (Debug)",
66
"type": "coreclr",
77
"request": "launch",
8+
"preLaunchTask": "build solution",
89
"program": "${workspaceFolder}/src/Api/bin/Debug/net9.0/Api.dll",
910
"args": [],
10-
"cwd": "${workspaceFolder}/src/api",
11+
"cwd": "${workspaceFolder}/src/Api",
1112
"stopAtEntry": false,
1213
"console": "internalConsole",
13-
"justMyCode": true,
14+
"justMyCode": false,
1415
},
1516
{
1617
"name": "Api (Debug with Browser)",
1718
"type": "coreclr",
1819
"request": "launch",
20+
"preLaunchTask": "build solution",
1921
"program": "${workspaceFolder}/src/Api/bin/Debug/net9.0/Api.dll",
2022
"args": [],
21-
"cwd": "${workspaceFolder}/src/api",
23+
"cwd": "${workspaceFolder}/src/Api",
2224
"stopAtEntry": false,
2325
"console": "internalConsole",
24-
"justMyCode": true,
26+
"justMyCode": false,
2527
"serverReadyAction": {
2628
"pattern": "Now listening on: (http?://\\S+)",
2729
"uriFormat": "%s/scalar",

0 commit comments

Comments
 (0)