通过任务在外部终端启动vscode任务2.0.0

是否可以通过外部终端启动bat文件,而不是通过vscode终端启动?通过任务在外部终端启动vscode任务2.0.0

任务示例:

{ 

"label": "Build",

"type": "shell",

"command": "./build.bat",

"presentation": {

"reveal": "always",

"panel": "new"

},

"problemMatcher": [],

"group": {

"kind": "build",

"isDefault": true

}

}

回答:

所以,虽然vscode使用的PowerShell作为Windows主环境,下一件工作对我来说:

"command": "Start-Process -FilePath \"path to script\"", 

"presentation": {

"reveal": "never"

},

以上是 通过任务在外部终端启动vscode任务2.0.0 的全部内容, 来源链接: utcz.com/qa/265578.html

回到顶部