From 639cd234a3ae40d9f24af6da3b9fcd7b8adbac20 Mon Sep 17 00:00:00 2001 From: "E.G. Hornbostel" Date: Tue, 2 Jul 2019 17:15:53 -0700 Subject: [PATCH] Fix visual studio dotnet core build task --- .vscode/tasks.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a914fef13..2d4663d57 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,12 +5,16 @@ "tasks": [ { "label": "build", - "command": "dotnet build", + "command": "dotnet", "type": "shell", "group": "build", "presentation": { "reveal": "silent" }, + "args": [ + "build", + "/property:GenerateFullPaths=true" + ], "problemMatcher": "$msCompile" } ]