首页 > 其他 > 详细

vs code 问题:preLaunchTask“build”已终止,退出代码为 1。解决办法

时间:2018-04-15 18:21:41      阅读:8337      评论:0      收藏:0      [点我收藏+]
菜单:任务-配置任务

改为如下:
{ // 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。解决办法

原文:https://www.cnblogs.com/micro-chen/p/8848580.html

(4)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!