2016-10-14 14:11:41 +00:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
2017-04-26 05:25:46 +00:00
|
|
|
"version": "2.0.0",
|
2019-06-21 06:00:48 +00:00
|
|
|
"tasks": [{
|
2018-06-07 06:02:54 +00:00
|
|
|
"label": "Build osu! (Debug)",
|
2017-12-11 07:31:17 +00:00
|
|
|
"type": "shell",
|
2018-03-26 01:52:54 +00:00
|
|
|
"command": "dotnet",
|
2017-04-26 05:25:46 +00:00
|
|
|
"args": [
|
2018-03-26 01:52:54 +00:00
|
|
|
"build",
|
|
|
|
"--no-restore",
|
2018-03-27 09:55:27 +00:00
|
|
|
"osu.Desktop",
|
2017-12-11 07:31:17 +00:00
|
|
|
"/p:GenerateFullPaths=true",
|
|
|
|
"/m",
|
2018-03-26 01:52:54 +00:00
|
|
|
"/verbosity:m"
|
2017-08-04 07:45:09 +00:00
|
|
|
],
|
2018-03-26 01:52:54 +00:00
|
|
|
"group": "build",
|
2017-12-11 07:31:17 +00:00
|
|
|
"problemMatcher": "$msCompile"
|
2017-04-26 05:25:46 +00:00
|
|
|
},
|
|
|
|
{
|
2018-06-07 06:02:54 +00:00
|
|
|
"label": "Build osu! (Release)",
|
2017-12-11 07:31:17 +00:00
|
|
|
"type": "shell",
|
2018-03-26 01:52:54 +00:00
|
|
|
"command": "dotnet",
|
2017-04-26 05:25:46 +00:00
|
|
|
"args": [
|
2018-03-26 01:52:54 +00:00
|
|
|
"build",
|
|
|
|
"--no-restore",
|
2018-03-27 09:55:27 +00:00
|
|
|
"osu.Desktop",
|
2017-12-11 07:31:17 +00:00
|
|
|
"/p:Configuration=Release",
|
|
|
|
"/p:GenerateFullPaths=true",
|
|
|
|
"/m",
|
2018-03-26 01:52:54 +00:00
|
|
|
"/verbosity:m"
|
2017-08-04 07:45:09 +00:00
|
|
|
],
|
2018-03-26 01:52:54 +00:00
|
|
|
"group": "build",
|
2017-12-11 07:31:17 +00:00
|
|
|
"problemMatcher": "$msCompile"
|
2017-08-04 07:45:09 +00:00
|
|
|
},
|
2018-05-29 06:18:54 +00:00
|
|
|
{
|
2018-06-07 06:02:54 +00:00
|
|
|
"label": "Build tests (Debug)",
|
2018-05-29 06:18:54 +00:00
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--no-restore",
|
|
|
|
"osu.Game.Tests",
|
|
|
|
"/p:GenerateFullPaths=true",
|
|
|
|
"/m",
|
|
|
|
"/verbosity:m"
|
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
2018-06-07 06:02:54 +00:00
|
|
|
"label": "Build tests (Release)",
|
2018-05-29 06:18:54 +00:00
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--no-restore",
|
|
|
|
"osu.Game.Tests",
|
|
|
|
"/p:Configuration=Release",
|
|
|
|
"/p:GenerateFullPaths=true",
|
|
|
|
"/m",
|
|
|
|
"/verbosity:m"
|
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
2019-06-21 06:00:48 +00:00
|
|
|
{
|
|
|
|
"label": "Build tournament tests (Debug)",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--no-restore",
|
|
|
|
"osu.Game.Tournament.Tests",
|
|
|
|
"/p:GenerateFullPaths=true",
|
|
|
|
"/m",
|
|
|
|
"/verbosity:m"
|
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
}, {
|
|
|
|
"label": "Build tournament tests (Release)",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--no-restore",
|
|
|
|
"osu.Game.Tournament.Tests",
|
|
|
|
"/p:Configuration=Release",
|
|
|
|
"/p:GenerateFullPaths=true",
|
|
|
|
"/m",
|
|
|
|
"/verbosity:m"
|
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
2018-03-26 01:52:54 +00:00
|
|
|
{
|
2018-12-21 01:23:44 +00:00
|
|
|
"label": "Restore (netcoreapp2.2)",
|
2018-03-26 01:52:54 +00:00
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
2019-02-06 03:02:04 +00:00
|
|
|
"restore",
|
|
|
|
"osu.sln"
|
2017-08-04 07:45:09 +00:00
|
|
|
],
|
2018-03-26 01:52:54 +00:00
|
|
|
"problemMatcher": []
|
2016-10-14 14:11:41 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|