mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:57:25 +08:00
87 lines
2.5 KiB
JSON
87 lines
2.5 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build (Debug, msbuild)",
|
|
"type": "shell",
|
|
"command": "msbuild",
|
|
"args": [
|
|
"osu.Game.Rulesets.Mania.Tests.csproj",
|
|
"/p:TargetFramework=net471",
|
|
"/p:GenerateFullPaths=true",
|
|
"/m",
|
|
"/verbosity:m"
|
|
],
|
|
"group": "build",
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Build (Release, msbuild)",
|
|
"type": "shell",
|
|
"command": "msbuild",
|
|
"args": [
|
|
"osu.Game.Rulesets.Mania.Tests.csproj",
|
|
"/p:Configuration=Release",
|
|
"/p:TargetFramework=net471",
|
|
"/p:GenerateFullPaths=true",
|
|
"/m",
|
|
"/verbosity:m"
|
|
],
|
|
"group": "build",
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Build (Debug, dotnet)",
|
|
"type": "shell",
|
|
"command": "dotnet",
|
|
"args": [
|
|
"build",
|
|
"--no-restore",
|
|
"osu.Game.Rulesets.Mania.Tests.csproj",
|
|
"/p:TargetFramework=netcoreapp2.1",
|
|
"/p:GenerateFullPaths=true",
|
|
"/m",
|
|
"/verbosity:m"
|
|
],
|
|
"group": "build",
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Build (Release, dotnet)",
|
|
"type": "shell",
|
|
"command": "dotnet",
|
|
"args": [
|
|
"build",
|
|
"--no-restore",
|
|
"osu.Game.Rulesets.Mania.Tests.csproj",
|
|
"/p:TargetFramework=netcoreapp2.1",
|
|
"/p:Configuration=Release",
|
|
"/p:GenerateFullPaths=true",
|
|
"/m",
|
|
"/verbosity:m"
|
|
],
|
|
"group": "build",
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Restore (net471)",
|
|
"type": "shell",
|
|
"command": "nuget",
|
|
"args": [
|
|
"restore"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Restore (netcoreapp2.1)",
|
|
"type": "shell",
|
|
"command": "dotnet",
|
|
"args": [
|
|
"restore"
|
|
],
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |