gpt4 book ai didi

visual-studio-code - 无法在 vscode 中运行简单的任务

转载 作者:行者123 更新时间:2023-12-03 22:32:54 28 4
gpt4 key购买 nike

我最终试图设置 vscode 来构建 typescript ,但我首先只想运行一个简单的任务,但我似乎无法让它工作。我现在只想从 https://code.visualstudio.com/docs/editor/tasks 运行“Hello world”任务, 即简单地将字符串回显到输出窗口。

我的tasks.json在.vscode文件夹中,其内容是:

{
"version": "0.1.0",
"command": "echo",
"isShellCommand": true,
"args": ["Hello World"],
"showOutput": "always"
}

当我尝试从命令面板运行任务并选择“任务:运行任务”时,当我希望看到此回显任务时,我看到“未找到任务”。我不知道为什么我在任务列表中没有看到这个任务。

我究竟做错了什么?

No tasks found

FWIW,我的 vscode 版本是 1.11.1。

最佳答案

这适用于当前的 vscode:

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "MyHelloTask",
"type": "shell",
"command": "echo",
"args": ["Hello\ World"],
"presentation": {
"echo": true,
"reveal": "always",
"panel": "shared"
}
}
]
}

哪里错了?
The property showOutput is deprecated. Use the reveal
property inside the presentation property instead.
See also the 1.14 release notes.

还有 isShellCommand现在变成了 type , 等等...

还要注意参数中的转义空格。 (否则会触发对它的明确投诉。是的,尽管它周围有引号。)

关于visual-studio-code - 无法在 vscode 中运行简单的任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43351828/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com