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",
|
2020-01-08 21:31:58 +08:00
|
|
|
"tasks": [
|
|
|
|
{
|
2018-06-07 14:02:54 +08:00
|
|
|
"label": "Build osu! (Debug)",
|
2017-12-11 15:31:17 +08:00
|
|
|
"type": "shell",
|
2018-03-26 09:52:54 +08:00
|
|
|
"command": "dotnet",
|
2017-04-26 13:25:46 +08:00
|
|
|
"args": [
|
2018-03-26 09:52:54 +08:00
|
|
|
"build",
|
2018-03-27 17:55:27 +08:00
|
|
|
"osu.Desktop",
|
2020-11-07 07:35:26 +08:00
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2017-08-04 15:45:09 +08:00
|
|
|
],
|
2018-03-26 09:52:54 +08:00
|
|
|
"group": "build",
|
2017-12-11 15:31:17 +08:00
|
|
|
"problemMatcher": "$msCompile"
|
2017-04-26 13:25:46 +08:00
|
|
|
},
|
|
|
|
{
|
2018-06-07 14:02:54 +08:00
|
|
|
"label": "Build osu! (Release)",
|
2017-12-11 15:31:17 +08:00
|
|
|
"type": "shell",
|
2018-03-26 09:52:54 +08:00
|
|
|
"command": "dotnet",
|
2017-04-26 13:25:46 +08:00
|
|
|
"args": [
|
2018-03-26 09:52:54 +08:00
|
|
|
"build",
|
2018-03-27 17:55:27 +08:00
|
|
|
"osu.Desktop",
|
2020-11-07 07:35:26 +08:00
|
|
|
"-p:Configuration=Release",
|
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2017-08-04 15:45:09 +08:00
|
|
|
],
|
2018-03-26 09:52:54 +08:00
|
|
|
"group": "build",
|
2017-12-11 15:31:17 +08:00
|
|
|
"problemMatcher": "$msCompile"
|
2017-08-04 15:45:09 +08:00
|
|
|
},
|
2018-05-29 14:18:54 +08:00
|
|
|
{
|
2018-06-07 14:02:54 +08:00
|
|
|
"label": "Build tests (Debug)",
|
2018-05-29 14:18:54 +08:00
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"osu.Game.Tests",
|
2020-11-07 07:35:26 +08:00
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2018-05-29 14:18:54 +08:00
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
2018-06-07 14:02:54 +08:00
|
|
|
"label": "Build tests (Release)",
|
2018-05-29 14:18:54 +08:00
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"osu.Game.Tests",
|
2020-11-07 07:35:26 +08:00
|
|
|
"-p:Configuration=Release",
|
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2018-05-29 14:18:54 +08:00
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
2019-06-21 14:00:48 +08:00
|
|
|
{
|
|
|
|
"label": "Build tournament tests (Debug)",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"osu.Game.Tournament.Tests",
|
2020-11-07 07:35:26 +08:00
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2019-06-21 14:00:48 +08:00
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
2020-01-08 21:31:58 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-21 14:00:48 +08:00
|
|
|
"label": "Build tournament tests (Release)",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"osu.Game.Tournament.Tests",
|
2020-11-07 07:35:26 +08:00
|
|
|
"-p:Configuration=Release",
|
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2019-06-21 14:00:48 +08:00
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
2020-01-08 21:31:58 +08:00
|
|
|
{
|
|
|
|
"label": "Build benchmarks",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"osu.Game.Benchmarks",
|
2020-11-07 07:35:26 +08:00
|
|
|
"-p:Configuration=Release",
|
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2020-01-08 21:31:58 +08:00
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
2016-10-14 22:11:41 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|