2016-10-14 22:11:41 +08:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
2017-04-26 13:25:46 +08:00
|
|
|
"version": "2.0.0",
|
|
|
|
"problemMatcher": "$msCompile",
|
|
|
|
"isShellCommand": true,
|
|
|
|
"command": "msbuild",
|
|
|
|
"suppressTaskName": true,
|
|
|
|
"showOutput": "silent",
|
|
|
|
"args": [
|
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/property:DebugType=portable"
|
|
|
|
],
|
|
|
|
"windows": {
|
|
|
|
"args": [
|
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/property:DebugType=portable",
|
|
|
|
"/m" //parallel compiling support. doesn't work well with mono atm
|
|
|
|
]
|
|
|
|
},
|
2016-10-14 22:11:41 +08:00
|
|
|
"tasks": [
|
|
|
|
{
|
2017-04-26 13:25:46 +08:00
|
|
|
"taskName": "Build (Debug)",
|
2017-04-22 15:59:15 +08:00
|
|
|
"isBuildCommand": true
|
|
|
|
},
|
|
|
|
{
|
2017-04-26 13:25:46 +08:00
|
|
|
"taskName": "Build (Release)",
|
2017-04-22 15:59:15 +08:00
|
|
|
"args": [
|
2017-04-26 13:25:46 +08:00
|
|
|
"/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"
|
|
|
|
]
|
2016-10-14 22:11:41 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|