From b54091376da1e6a641e214c6c596f90cf8342ba6 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Mon, 30 Mar 2020 14:55:47 -0300 Subject: [PATCH] [VSCode] add a simple build task to build the solution (#2163) --- .vscode/tasks.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..389090e2 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Build Solution", + "command": "dotnet", + "type": "shell", + "args": [ + "build", + // Ask dotnet build to generate full paths for file names. + "/property:GenerateFullPaths=true", + // Do not generate summary otherwise it leads to duplicate errors in Problems panel + "/consoleloggerparameters:NoSummary" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "silent", + }, + "problemMatcher": "$msCompile" + } + ] +}