mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"command": "msbuild",
|
|
"type": "shell",
|
|
"suppressTaskName": true,
|
|
"args": [
|
|
"/property:GenerateFullPaths=true",
|
|
"/property:DebugType=portable",
|
|
"/verbosity:minimal",
|
|
"/m" //parallel compiling support.
|
|
],
|
|
"tasks": [{
|
|
"taskName": "Build (Debug)",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$msCompile"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Build (Release)",
|
|
"args": [
|
|
"/property:Configuration=Release"
|
|
],
|
|
"problemMatcher": [
|
|
"$msCompile"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Clean (Debug)",
|
|
"args": [
|
|
"/target:Clean"
|
|
],
|
|
"problemMatcher": [
|
|
"$msCompile"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Clean (Release)",
|
|
"args": [
|
|
"/target:Clean",
|
|
"/property:Configuration=Release"
|
|
],
|
|
"problemMatcher": [
|
|
"$msCompile"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Clean All",
|
|
"dependsOn": [
|
|
"Clean (Debug)",
|
|
"Clean (Release)"
|
|
],
|
|
"problemMatcher": [
|
|
"$msCompile"
|
|
]
|
|
}
|
|
]
|
|
} |