mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
327327ea92
No longer required as mono 5.0 upwards handles this gracefully (while not yet adding full parallel support).
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"problemMatcher": "$msCompile",
|
|
"isShellCommand": true,
|
|
"command": "msbuild",
|
|
"suppressTaskName": true,
|
|
"showOutput": "silent",
|
|
"args": [
|
|
"/property:GenerateFullPaths=true",
|
|
"/property:DebugType=portable",
|
|
"/m" //parallel compiling support.
|
|
],
|
|
"tasks": [
|
|
{
|
|
"taskName": "Build (Debug)",
|
|
"isBuildCommand": true
|
|
},
|
|
{
|
|
"taskName": "Build (Release)",
|
|
"args": [
|
|
"/property:Configuration=Release"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Clean All",
|
|
"dependsOn": ["Clean (Debug)", "Clean (Release)"]
|
|
},
|
|
{
|
|
"taskName": "Clean (Debug)",
|
|
"args": [
|
|
"/target:Clean"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Clean (Release)",
|
|
"args": [
|
|
"/target:Clean",
|
|
"/property:Configuration=Release"
|
|
]
|
|
}
|
|
]
|
|
} |