1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 16:10:48 +08:00

Add parallel compile flag.

This commit is contained in:
Dean Herbert
2017-04-24 10:04:32 +09:00
Unverified
parent c61f69569c
commit 915ff7cba5
+4 -2
View File
@@ -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",