1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-20 05:07:19 +08:00

Remove custom windows configuration from tasks.json

No longer required as mono 5.0 upwards handles this gracefully (while not yet adding full parallel support).
This commit is contained in:
Dean Herbert 2017-07-11 10:43:43 +09:00
parent e9b397f06f
commit 327327ea92

10
.vscode/tasks.json vendored
View File

@ -9,15 +9,9 @@
"showOutput": "silent",
"args": [
"/property:GenerateFullPaths=true",
"/property:DebugType=portable"
"/property:DebugType=portable",
"/m" //parallel compiling support.
],
"windows": {
"args": [
"/property:GenerateFullPaths=true",
"/property:DebugType=portable",
"/m" //parallel compiling support. doesn't work well with mono atm
]
},
"tasks": [
{
"taskName": "Build (Debug)",