2018-03-29 11:26:32 +08:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2018-08-01 21:07:39 +08:00
|
|
|
"label": "Build (Debug)",
|
2018-03-29 11:26:32 +08:00
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--no-restore",
|
|
|
|
"osu.Game.Rulesets.Taiko.Tests.csproj",
|
|
|
|
"/p:GenerateFullPaths=true",
|
|
|
|
"/m",
|
|
|
|
"/verbosity:m"
|
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
2018-08-01 21:07:39 +08:00
|
|
|
"label": "Build (Release)",
|
2018-03-29 11:26:32 +08:00
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--no-restore",
|
|
|
|
"osu.Game.Rulesets.Taiko.Tests.csproj",
|
|
|
|
"/p:Configuration=Release",
|
|
|
|
"/p:GenerateFullPaths=true",
|
|
|
|
"/m",
|
|
|
|
"/verbosity:m"
|
|
|
|
],
|
|
|
|
"group": "build",
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
2018-08-01 21:07:39 +08:00
|
|
|
"label": "Restore",
|
2018-03-29 11:26:32 +08:00
|
|
|
"type": "shell",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"restore"
|
|
|
|
],
|
|
|
|
"problemMatcher": []
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|