From b707a2335b35f082cf292b2d3624b43232806231 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 22 Jun 2021 00:23:48 +0000 Subject: [PATCH] --- .vscode/tasks.json | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a852302..54de42d 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,16 +1,18 @@ { - "version": "0.1.0", + "version": "2.0.0", "command": "dotnet", - "isShellCommand": true, "args": [], "tasks": [ { - "taskName": "build", + "label": "build", + "type": "shell", + "command": "dotnet", "args": [ + "build", "${workspaceRoot}/rockfishCore.csproj" ], - "isBuildCommand": true, - "problemMatcher": "$msCompile" + "problemMatcher": "$msCompile", + "group": "build" } ] } \ No newline at end of file