gpt4 book ai didi

task - VS Codetasks.json错误

转载 作者:行者123 更新时间:2023-12-03 05:34:14 24 4
gpt4 key购买 nike

这是我的 tasks.json 文件:

{
"version": "0.1.0",
"tasks": [
{
"taskName": "clean",
"windows": {
"command": "del"
},
"linux": {
"command": "rm"
},
"args": [ "build/*" ],
"showOutput": "never",
"isShellCommand": true,
"suppressTaskName": true
}
]
}

每次我使用 Ctrl+P 并编写 task clean 来执行任务时,都会收到以下错误:

Cannot read property 'args' of undefined

有人知道我错过了什么吗?

最佳答案

在特定于操作系统的“linux”/外部指定“command”之前,VSCode 似乎无法满足要求>“windows” 属性,即使您位于这些平台之一。

通过添加虚拟"command": "",它可以工作:

{
"version": "0.1.0",
"tasks": [
{
"taskName": "clean",
"windows": {
"command": "del"
},
"linux": {
"command": "rm"
},
"command": "",
"args": [ "build/*" ],
"showOutput": "never",
"isShellCommand": true,
"suppressTaskName": true
}
]
}

这对我来说似乎是一个错误。我建议您将其报告给 VSCode issue tracker .

关于task - VS Codetasks.json错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42224218/

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