vs code 问题:preLaunchTask“build”已终止,退出代码为 1。解决办法
Posted MicrobeORM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs code 问题:preLaunchTask“build”已终止,退出代码为 1。解决办法相关的知识,希望对你有一定的参考价值。
菜单:任务-配置任务
改为如下:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"command": "",
"args": [],
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "shell",
"args": [
"build"
],
"options": {
"cwd": "${workspaceRoot}"
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": "$msCompile"
}
]
}
以上是关于vs code 问题:preLaunchTask“build”已终止,退出代码为 1。解决办法的主要内容,如果未能解决你的问题,请参考以下文章
从postDebugTask-VS Code中终止另一个任务
VSCode 编译时出现错误 找不到 preLaunchTask“g++” 怎么办?
如何使 vscode 不等待完成 preLaunchTask?
preLaunchTask““C/C++: g++.exe 生成活动文件“已终止,退出代码为1