diff --git a/.vscode/launch.json b/.vscode/launch.json index 0459c9c21..d9b011929 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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",