We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdb0499 commit ef494a0Copy full SHA for ef494a0
.vscode/launch.json
@@ -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
20
+ "request": "attach",
21
+ "processId": "${command:pickProcess}"
22
23
24
+ "name": ".NET Full Attach",
25
+ "type": "clr",
26
27
28
+ }
29
+ ]
30
+}
0 commit comments