diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7d837e1..3dc018b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,20 +2,26 @@ "version": "2.0.0", "tasks": [ { - "taskName": "build", + "label": "build", "command": "dotnet build", "type": "shell", - "group": "build", + "group": { + "kind": "build", + "isDefault": true + }, "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" }, { - "taskName": "test", + "label": "test", "command": "dotnet test ./Monacs.UnitTests/Monacs.UnitTests.fsproj", "type": "shell", - "group": "build", + "group": { + "kind": "test", + "isDefault": true + }, "presentation": { "reveal": "always" },