From 02d42a29c1c76f863d8affc7a95ad6abf5244109 Mon Sep 17 00:00:00 2001 From: Bart Sokol Date: Mon, 2 Apr 2018 19:16:33 +0200 Subject: [PATCH] Update VS code tasks --- .vscode/tasks.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) 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" },