NotePublic/Software/Applications/VSCode/VSCode_调试脚本.md
ithink.chan 628eb75e62 修改文件夹名.
Signed-off-by: ithink.chan <chenyang@autoai.com>
2019-10-11 09:43:29 +08:00

20 lines
329 B
Markdown

# VSCode 调试脚本
VSCode 可以用来调试程序,通过修改 .vscode/launch.json 来支持各种调试需求。
## 增加调试参数
在 "configurations" 中增加:
```json
"configurations": [
"args":[
"arg1",
"...",
"argN"
]
]
```
可在调试时增加程序入口参数。