mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:37:25 +08:00
71 lines
1.9 KiB
JSON
71 lines
1.9 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [{
|
|
"label": "Build (Debug)",
|
|
"type": "shell",
|
|
"command": "msbuild",
|
|
"args": [
|
|
"/p:GenerateFullPaths=true",
|
|
"/p:DebugType=portable",
|
|
"/m",
|
|
"/v:m"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Build (Release)",
|
|
"type": "shell",
|
|
"command": "msbuild",
|
|
"args": [
|
|
"/p:Configuration=Release",
|
|
"/p:DebugType=portable",
|
|
"/p:GenerateFullPaths=true",
|
|
"/m",
|
|
"/v:m"
|
|
],
|
|
"group": "build",
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Clean (Debug)",
|
|
"type": "shell",
|
|
"command": "msbuild",
|
|
"args": [
|
|
"/p:DebugType=portable",
|
|
"/p:GenerateFullPaths=true",
|
|
"/m",
|
|
"/t:Clean",
|
|
"/v:m"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Clean (Release)",
|
|
"type": "shell",
|
|
"command": "msbuild",
|
|
"args": [
|
|
"/p:Configuration=Release",
|
|
"/p:GenerateFullPaths=true",
|
|
"/p:DebugType=portable",
|
|
"/m",
|
|
"/t:Clean",
|
|
"/v:m"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Clean All",
|
|
"dependsOn": [
|
|
"Clean (Debug)",
|
|
"Clean (Release)"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
}
|
|
]
|
|
} |