当前位置: 主页 > 程序 >
VSCode提供了tasks功能,可以将常用命令整合,快速执行。有时候我们需要对参数输入自定义,希望可以在执行的时候,手动输入某些参数,使得任务使用场景更广泛。VSCode提供了相应功能。tasks.json脚本如下:
"inputs": [ { "id": "filename", "type": "promptString", "description": "file name", "default": "hello" }, ], "tasks": [ { "label": "test", "type": "shell", "linux":{ "command": "./test.sh ${input:filename}", }, "windows":{ "command": "./test.bat ${input:filename}" } } ]
推荐内容
热点内容
友情链接
Powered by DedeCMS
Copyright © 2014-2023 Oliver