From 915ff7cba5a7c3f2b8a9b1d2eb3ee3cef1fc021d Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 24 Apr 2017 10:04:32 +0900 Subject: [PATCH] Add parallel compile flag. --- .vscode/tasks.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 6918afa620..a745d96a9f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -12,7 +12,8 @@ "args": [ // Ask msbuild to generate full paths for file names. "/property:GenerateFullPaths=true", - "/property:DebugType=portable" + "/property:DebugType=portable", + "/m" ], // Use the standard MS compiler pattern to detect errors, warnings and infos "problemMatcher": "$msCompile", @@ -27,7 +28,8 @@ // Ask msbuild to generate full paths for file names. "/property:GenerateFullPaths=true", "/property:DebugType=portable", - "/target:Clean,Build" + "/target:Clean,Build", + "/m" ], // Use the standard MS compiler pattern to detect errors, warnings and infos "problemMatcher": "$msCompile",