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"
}
我如何能看到任務模板?