vs code 找不到任务“build“。

vs code 找不到任务“build“。_第1张图片

原因:
在这里插入图片描述
.vscode\launch.json中有一个参数:

 "preLaunchTask": "build",

vs code 找不到任务“build“。_第2张图片
每次运行向前会跑这个task,

(帮你把项目dotnet build 一下)

vs code 找不到任务“build“。_第3张图片
看看tasks.json是否有这个,没有就写一个,有可能名字不对,需要修改为"label": “xxx”, xxx同名

{
            "label": "debug build",
            "command": "dotnet",
            "type": "process",
            "args": [
                "build",
                "${workspaceFolder}\\AA.bbb.ccc.ddd.csproj",(改成自己的)
                "/property:GenerateFullPaths=true",
                "/consoleloggerparameters:NoSummary"
            ],
            "problemMatcher": "$msCompile"
        },

你可能感兴趣的:(C#,Error,c#)