From 6ad26b162aa056848135e0f14367601fead49e41 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 23 Aug 2022 00:25:11 +0000 Subject: [PATCH] Visual studio automatically changed the build tasks when I opened this project to find the NUKE icon name --- .vscode/tasks.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 27797e7..279cf2b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,16 +1,21 @@ { - "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}/pecklist.csproj" ], - "isBuildCommand": true, - "problemMatcher": "$msCompile" + "problemMatcher": "$msCompile", + "group": { + "_id": "build", + "isDefault": false + } } ] } \ No newline at end of file