mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:37:25 +08:00
26 lines
741 B
JSON
26 lines
741 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "0.1.0",
|
|
"windows": {
|
|
"command": "msbuild"
|
|
},
|
|
"linux": {
|
|
"command": "xbuild"
|
|
},
|
|
"args": [
|
|
// Ask msbuild to generate full paths for file names.
|
|
"/property:GenerateFullPaths=true"
|
|
],
|
|
"taskSelector": "/t:",
|
|
"showOutput": "silent",
|
|
"tasks": [
|
|
{
|
|
"taskName": "build",
|
|
// Show the output window only if unrecognized errors occur.
|
|
"showOutput": "silent",
|
|
// Use the standard MS compiler pattern to detect errors, warnings and infos
|
|
"problemMatcher": "$msCompile"
|
|
}
|
|
]
|
|
} |