2018-08-25 20:40:40 +08:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "Build (Debug)",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"osu.Game.Tournament.Tests.csproj",
|
2020-11-07 08:09:21 +08:00
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2018-08-25 20:40:40 +08:00
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build (Release)",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"osu.Game.Tournament.Tests.csproj",
|
2020-11-07 08:09:21 +08:00
|
|
|
"-p:Configuration=Release",
|
|
|
|
"-p:GenerateFullPaths=true",
|
|
|
|
"-m",
|
|
|
|
"-verbosity:m"
|
2018-08-25 20:40:40 +08:00
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|