2017-05-08 348 views
0

在Visual Studio代碼中,我設置了以下構建任務(tasks.json),並且它一直工作到今天。無法在VSCode中運行構建任務(Ctrl Shift B)

{ 
// See https://go.microsoft.com/fwlink/?LinkId=733558 
// for the documentation about the tasks.json format 
"version": "0.1.0", 
"command": "tsc", 
"isShellCommand": true, 
"args": ["-p", "."], 
"showOutput": "always", 
"problemMatcher": "$tsc" 
} 

我沒有升級VSCode到1.12.1所以我想知道如果升級是爲什麼這不再工作。基本上現在當我按Ctrl Shift B時,什麼也沒有發生。通常在底部顯示旋轉圖標,然後在任務輸出中顯示錯誤。現在沒有發生。我仍然可以在命令上成功構建(tsc -p。)

回答

0

升級我的Visual Studio Team Services擴展後,問題就消失了。

相關問題