Skip to content

Commit

Permalink
add stdio debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
enricosada committed Jun 6, 2019
1 parent c3bfce8 commit 6066669
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,30 @@
"console": "integratedTerminal",
"stopAtEntry": false,
},
{
"name": ".NET Core mode stdio (debug)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build_debug_netcore",
"program": "${workspaceFolder}/src/FsAutoComplete/bin/Debug/netcoreapp2.1/fsautocomplete.dll",
"args": ["--mode", "stdio", "-v"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": ".NET mode stdio (debug)",
"type": "clr",
"request": "launch",
"preLaunchTask": "build_debug_net",
"program": "${workspaceFolder}/src/FsAutoComplete/bin/Debug/net461/fsautocomplete.exe",
"args": ["--mode", "stdio", "-v"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
Expand Down

0 comments on commit 6066669

Please sign in to comment.