osu/.vscode/tasks.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

109 lines
3.1 KiB
JSON
Raw Normal View History

2016-10-14 14:11:41 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
2020-01-08 13:31:58 +00:00
"tasks": [
{
"label": "Build osu! (Debug)",
2017-12-11 07:31:17 +00:00
"type": "shell",
"command": "dotnet",
"args": [
"build",
2018-03-27 09:55:27 +00:00
"osu.Desktop",
"-p:GenerateFullPaths=true",
"-m",
"-verbosity:m"
2017-08-04 07:45:09 +00:00
],
"group": "build",
2017-12-11 07:31:17 +00:00
"problemMatcher": "$msCompile"
},
{
"label": "Build osu! (Release)",
2017-12-11 07:31:17 +00:00
"type": "shell",
"command": "dotnet",
"args": [
"build",
2018-03-27 09:55:27 +00:00
"osu.Desktop",
"-p:Configuration=Release",
"-p:GenerateFullPaths=true",
"-m",
"-verbosity:m"
2017-08-04 07:45:09 +00:00
],
"group": "build",
2017-12-11 07:31:17 +00:00
"problemMatcher": "$msCompile"
2017-08-04 07:45:09 +00:00
},
{
"label": "Build tests (Debug)",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"osu.Game.Tests",
"-p:GenerateFullPaths=true",
"-m",
"-verbosity:m"
],
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "Build tests (Release)",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"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",
"osu.Game.Tournament.Tests",
"-p:GenerateFullPaths=true",
"-m",
"-verbosity:m"
2019-06-21 06:00:48 +00:00
],
"group": "build",
"problemMatcher": "$msCompile"
2020-01-08 13:31:58 +00:00
},
{
2019-06-21 06:00:48 +00:00
"label": "Build tournament tests (Release)",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"osu.Game.Tournament.Tests",
"-p:Configuration=Release",
"-p:GenerateFullPaths=true",
"-m",
"-verbosity:m"
2019-06-21 06:00:48 +00:00
],
"group": "build",
"problemMatcher": "$msCompile"
},
2020-01-08 13:31:58 +00:00
{
"label": "Build benchmarks",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"osu.Game.Benchmarks",
"-p:Configuration=Release",
"-p:GenerateFullPaths=true",
"-m",
"-verbosity:m"
2020-01-08 13:31:58 +00:00
],
"group": "build",
"problemMatcher": "$msCompile"
2016-10-14 14:11:41 +00:00
}
]
}