From a25863f2289050fdfb091ba1ff2808cd1218d7e1 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 9 Apr 2020 12:24:56 -0300 Subject: [PATCH] add format command for vscode (#2174) --- .vscode/tasks.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 389090e24b..57ef630af7 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -20,6 +20,18 @@ "reveal": "silent", }, "problemMatcher": "$msCompile" + }, + { + "label": "Format", + "command": "dotnet", + "type": "shell", + "args": [ + "format", + ], + "presentation": { + "reveal": "silent", + }, + "problemMatcher": "$msCompile" } ] }