1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 10:07:28 +08:00
osu-lazer/.vscode/tasks.json

71 lines
1.9 KiB
JSON
Raw Normal View History

2016-10-14 22:11:41 +08:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
2017-08-04 15:45:09 +08:00
"tasks": [{
2017-12-11 15:31:17 +08:00
"label": "Build (Debug)",
"type": "shell",
"command": "msbuild",
"args": [
"/p:GenerateFullPaths=true",
"/p:DebugType=portable",
"/m",
"/v:m"
],
2017-08-04 15:45:09 +08:00
"group": {
"kind": "build",
"isDefault": true
},
2017-12-11 15:31:17 +08:00
"problemMatcher": "$msCompile"
},
{
2017-12-11 15:31:17 +08:00
"label": "Build (Release)",
"type": "shell",
"command": "msbuild",
"args": [
2017-12-11 15:31:17 +08:00
"/p:Configuration=Release",
"/p:DebugType=portable",
"/p:GenerateFullPaths=true",
"/m",
"/v:m"
2017-08-04 15:45:09 +08:00
],
2017-12-11 15:31:17 +08:00
"group": "build",
"problemMatcher": "$msCompile"
},
{
2017-12-11 15:31:17 +08:00
"label": "Clean (Debug)",
"type": "shell",
"command": "msbuild",
"args": [
2017-12-11 15:31:17 +08:00
"/p:DebugType=portable",
"/p:GenerateFullPaths=true",
"/m",
"/t:Clean",
"/v:m"
2017-08-04 15:45:09 +08:00
],
2017-12-11 15:31:17 +08:00
"problemMatcher": "$msCompile"
},
{
2017-12-11 15:31:17 +08:00
"label": "Clean (Release)",
"type": "shell",
"command": "msbuild",
"args": [
2017-12-11 15:31:17 +08:00
"/p:Configuration=Release",
"/p:GenerateFullPaths=true",
"/p:DebugType=portable",
"/m",
"/t:Clean",
"/v:m"
2017-08-04 15:45:09 +08:00
],
2017-12-11 15:31:17 +08:00
"problemMatcher": "$msCompile"
2017-08-04 15:45:09 +08:00
},
{
2017-12-11 15:31:17 +08:00
"label": "Clean All",
2017-08-04 15:45:09 +08:00
"dependsOn": [
"Clean (Debug)",
"Clean (Release)"
],
2017-12-11 15:31:17 +08:00
"problemMatcher": "$msCompile"
2016-10-14 22:11:41 +08:00
}
]
}