diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f5707b198..777cf9f48 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,17 +1,20 @@ { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format - "version": "0.1.0", + "version": "2.0.0", "command": "dotnet", - "isShellCommand": true, "args": [], "tasks": [ { - "taskName": "build", - "args": [], - "isBuildCommand": true, - "showOutput": "always", - "problemMatcher": "$msCompile" + "label": "build", + "type": "shell", + "command": "dotnet", + "args": [ + "build", + "Build.csproj" + ], + "problemMatcher": "$msCompile", + "group": "build" } ] } \ No newline at end of file