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" + ] +] +``` + +可在调试时增加程序入口参数。