mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 20:22:55 +08:00
Don't use parallel compiling on non-windows platforms.
This currently triggers a unhandled exception in msbuild.
This commit is contained in:
parent
2d6fa711d1
commit
b8bf942860
22
.vscode/tasks.json
vendored
22
.vscode/tasks.json
vendored
@ -10,11 +10,16 @@
|
|||||||
"showOutput": "silent",
|
"showOutput": "silent",
|
||||||
"command": "msbuild",
|
"command": "msbuild",
|
||||||
"args": [
|
"args": [
|
||||||
// Ask msbuild to generate full paths for file names.
|
|
||||||
"/property:GenerateFullPaths=true",
|
"/property:GenerateFullPaths=true",
|
||||||
"/property:DebugType=portable",
|
"/property:DebugType=portable"
|
||||||
"/m"
|
|
||||||
],
|
],
|
||||||
|
"windows": {
|
||||||
|
"args": [
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/property:DebugType=portable",
|
||||||
|
"/m" //parallel compiling support. doesn't work well with mono atm
|
||||||
|
]
|
||||||
|
},
|
||||||
// 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",
|
||||||
"isBuildCommand": true
|
"isBuildCommand": true
|
||||||
@ -28,9 +33,16 @@
|
|||||||
// 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"
|
|
||||||
],
|
],
|
||||||
|
"windows": {
|
||||||
|
"args": [
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/property:DebugType=portable",
|
||||||
|
"/target:Clean,Build",
|
||||||
|
"/m" //parallel compiling support. doesn't work well with mono atm
|
||||||
|
]
|
||||||
|
},
|
||||||
// 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",
|
||||||
"isBuildCommand": true
|
"isBuildCommand": true
|
||||||
|
Loading…
Reference in New Issue
Block a user