From f353a5ffc159556d8e079bbec3132b35f220cc52 Mon Sep 17 00:00:00 2001 From: zhangmingfeng Date: Fri, 17 Apr 2020 15:02:38 +0800 Subject: [PATCH] c++ launcher configure --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..cce56e6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + "version": "0.1.0", + "configurations": [ + { + "name": "Launch Extension", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "--extensionDevelopmentPath=${workspaceRoot}" + ] + } + ] +} \ No newline at end of file