Skip to content

Commit ef494a0

Browse files
author
Kapil Borle
committed
Add launch.json file
1 parent fdb0499 commit ef494a0

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.vscode/launch.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
5+
{
6+
"name": ".NET Core Launch (console)",
7+
"type": "coreclr",
8+
"request": "launch",
9+
"preLaunchTask": "build",
10+
"program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>",
11+
"args": [],
12+
"cwd": "${workspaceRoot}",
13+
"externalConsole": false,
14+
"stopAtEntry": false,
15+
"internalConsoleOptions": "openOnSessionStart"
16+
},
17+
{
18+
"name": ".NET Core Attach",
19+
"type": "coreclr",
20+
"request": "attach",
21+
"processId": "${command:pickProcess}"
22+
},
23+
{
24+
"name": ".NET Full Attach",
25+
"type": "clr",
26+
"request": "attach",
27+
"processId": "${command:pickProcess}"
28+
}
29+
]
30+
}

0 commit comments

Comments
 (0)