0
申し訳ありませんと、私は明らかに不足しているのですが、ここではVisual Studioのコードタスクのヘルプページであれば:https://code.visualstudio.com/docs/editor/tasksテキストは言う:Visual Studioコードで「タスクランナーテンプレート」を探すには?
は、タスクを選択:設定タスクランナーコマンドを、あなたは、タスクランナーのリストが表示されますテンプレート。 「その他」を選択すると、外部コマンドを実行するタスクを作成します。
私は「その他」を参照していない、私はちょうど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"
}
私はタスク・テンプレートを見ることを得るにはどうすればよいですか?