forked from inkle/ink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
41 lines (41 loc) · 1.78 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0",
"configurations": [
{
"name": "ink Testbed (output only)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build InkTestBed",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/InkTestBed/bin/Debug/netcoreapp3.1/InkTestBed.dll",
"args": [],
"cwd": "${workspaceFolder}/InkTestBed",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
"console": "internalConsole",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "ink Testbed (choices in terminal)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build InkTestBed",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/InkTestBed/bin/Debug/netcoreapp3.1/InkTestBed.dll",
"args": [],
"cwd": "${workspaceFolder}/InkTestBed",
"console": "integratedTerminal",
"stopAtEntry": false,
"internalConsoleOptions": "neverOpen"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}