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

85 lines
2.4 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 (Debug, msbuild)",
2017-12-11 15:31:17 +08:00
"type": "shell",
"command": "msbuild",
"args": [
"/p:TargetFramework=net461",
2017-12-11 15:31:17 +08:00
"/p:GenerateFullPaths=true",
"/m",
"/verbosity:m"
2017-12-11 15:31:17 +08:00
],
"group": "build",
2017-12-11 15:31:17 +08:00
"problemMatcher": "$msCompile"
},
{
"label": "Build (Release, msbuild)",
2017-12-11 15:31:17 +08:00
"type": "shell",
"command": "msbuild",
"args": [
2017-12-11 15:31:17 +08:00
"/p:Configuration=Release",
"/p:TargetFramework=net461",
2017-12-11 15:31:17 +08:00
"/p:GenerateFullPaths=true",
"/m",
"/verbosity:m"
2017-08-04 15:45:09 +08:00
],
2017-12-11 15:31:17 +08:00
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "Build (Debug, dotnet)",
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",
"/p:TargetFramework=netcoreapp2.0",
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 (Release, dotnet)",
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",
"/p:TargetFramework=netcoreapp2.0",
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": "Restore (net461)",
"type": "shell",
"command": "nuget",
"args": [
"restore"
],
"problemMatcher": []
},
{
"label": "Restore (netcoreapp2.0)",
"type": "shell",
"command": "dotnet",
"args": [
"restore"
2017-08-04 15:45:09 +08:00
],
"problemMatcher": []
2016-10-14 22:11:41 +08:00
}
]
}