1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 18:47:25 +08:00
osu-lazer/.vscode/tasks.json

63 lines
1.5 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",
"command": "msbuild",
2017-08-04 15:45:09 +08:00
"type": "shell",
"suppressTaskName": true,
"args": [
"/property:GenerateFullPaths=true",
"/property:DebugType=portable",
2017-08-04 15:45:09 +08:00
"/verbosity:minimal",
"/m" //parallel compiling support.
],
2017-08-04 15:45:09 +08:00
"tasks": [{
"taskName": "Build (Debug)",
2017-08-04 15:45:09 +08:00
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$msCompile"
]
},
{
"taskName": "Build (Release)",
"args": [
"/property:Configuration=Release"
2017-08-04 15:45:09 +08:00
],
"problemMatcher": [
"$msCompile"
]
},
{
"taskName": "Clean (Debug)",
"args": [
"/target:Clean"
2017-08-04 15:45:09 +08:00
],
"problemMatcher": [
"$msCompile"
]
},
{
"taskName": "Clean (Release)",
"args": [
"/target:Clean",
"/property:Configuration=Release"
2017-08-04 15:45:09 +08:00
],
"problemMatcher": [
"$msCompile"
]
},
{
"taskName": "Clean All",
"dependsOn": [
"Clean (Debug)",
"Clean (Release)"
],
"problemMatcher": [
"$msCompile"
]
2016-10-14 22:11:41 +08:00
}
]
}