【发布时间】:2017-06-21 05:13:10
【问题描述】:
抱歉,如果我遗漏了显而易见的内容,但在 Visual Studio Code 任务的帮助页面中:https://code.visualstudio.com/docs/editor/tasks 文字说:
选择任务:配置任务运行程序命令,您将看到任务运行程序模板列表。选择“其他”以创建运行外部命令的任务。
我没有看到“其他”,我只是在 tasks.json 中看到以下内容:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "c:/Windows/sysnative/bash.exe",
"isShellCommand": true,
"args": ["-c 'cd /mnt/c/SVNProj/Leda/trunk/software/Source/LedaAP_win_linux; make'"],
"showOutput": "always"
}
如何查看任务模板?
【问题讨论】: