From ba20cc4d98752a6242330fde2dcee4e5b15d9e21 Mon Sep 17 00:00:00 2001 From: "ithink.chan" Date: Wed, 24 Jul 2019 16:34:15 +0800 Subject: [PATCH] =?UTF-8?q?VSCode=20=E8=B0=83=E8=AF=95=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ithink.chan --- .../Application/VSCode/VSCode_调试脚本.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Software/Application/VSCode/VSCode_调试脚本.md diff --git a/Software/Application/VSCode/VSCode_调试脚本.md b/Software/Application/VSCode/VSCode_调试脚本.md new file mode 100644 index 0000000..de2b6dd --- /dev/null +++ b/Software/Application/VSCode/VSCode_调试脚本.md @@ -0,0 +1,19 @@ +# VSCode 调试脚本 + +VSCode 可以用来调试程序,通过修改 .vscode/launch.json 来支持各种调试需求。 + +## 增加调试参数 + +在 "configurations" 中增加: + +```json +"configurations": [ + "args":[ + "arg1", + "...", + "argN" + ] +] +``` + +可在调试时增加程序入口参数。