Add parallel compile flag.

This commit is contained in:
Dean Herbert 2017-04-24 10:04:32 +09:00
parent c61f69569c
commit 915ff7cba5

6
.vscode/tasks.json vendored
View File

@ -12,7 +12,8 @@
"args": [ "args": [
// Ask msbuild to generate full paths for file names. // Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/property:DebugType=portable" "/property:DebugType=portable",
"/m"
], ],
// Use the standard MS compiler pattern to detect errors, warnings and infos // Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile", "problemMatcher": "$msCompile",
@ -27,7 +28,8 @@
// Ask msbuild to generate full paths for file names. // Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/property:DebugType=portable", "/property:DebugType=portable",
"/target:Clean,Build" "/target:Clean,Build",
"/m"
], ],
// Use the standard MS compiler pattern to detect errors, warnings and infos // Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile", "problemMatcher": "$msCompile",