1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/.vscode/tasks.json

79 lines
2.2 KiB
JSON
Raw Normal View History

2016-10-14 22:11:41 +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 osu! (Debug)",
2017-12-11 15:31:17 +08:00
"type": "shell",
"command": "dotnet",
"args": [
"build",
"--no-restore",
2018-03-27 17:55:27 +08:00
"osu.Desktop",
2017-12-11 15:31:17 +08:00
"/p:GenerateFullPaths=true",
"/m",
"/verbosity:m"
2017-08-04 15:45:09 +08:00
],
"group": "build",
2017-12-11 15:31:17 +08:00
"problemMatcher": "$msCompile"
},
{
"label": "Build osu! (Release)",
2017-12-11 15:31:17 +08:00
"type": "shell",
"command": "dotnet",
"args": [
"build",
"--no-restore",
2018-03-27 17:55:27 +08:00
"osu.Desktop",
2017-12-11 15:31:17 +08:00
"/p:Configuration=Release",
"/p:GenerateFullPaths=true",
"/m",
"/verbosity:m"
2017-08-04 15:45:09 +08:00
],
"group": "build",
2017-12-11 15:31:17 +08:00
"problemMatcher": "$msCompile"
2017-08-04 15:45:09 +08:00
},
{
"label": "Build tests (Debug)",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"--no-restore",
"osu.Game.Tests",
"/p:GenerateFullPaths=true",
"/m",
"/verbosity:m"
],
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "Build tests (Release)",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"--no-restore",
"osu.Game.Tests",
"/p:Configuration=Release",
"/p:GenerateFullPaths=true",
"/m",
"/verbosity:m"
],
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "Restore (netcoreapp2.2)",
"type": "shell",
"command": "dotnet",
"args": [
2019-02-06 11:02:04 +08:00
"restore",
"osu.sln"
2017-08-04 15:45:09 +08:00
],
"problemMatcher": []
2016-10-14 22:11:41 +08:00
}
]
}