2017-06-20 90 views
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" 
} 

我如何能看到任務模板?

回答

1

我認爲這是vscode的一部分壞行爲,但是我只能在點擊「配置任務亞軍」後出現的選項,如果有任務.json文件。所以如果你已經有了一個tasks.json文件,重新命名並重試。然後模板將出現。

相關問題