Bilibili-Evolved/builder/dotnet/.vscode/tasks.json
2020-11-03 22:20:17 +08:00

35 lines
867 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "构建编译器 compile builder",
"type": "shell",
"command": "dotnet publish -c Release -o publish/",
"group": "build",
"presentation": {
"echo": false,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": false
},
"problemMatcher": []
},
{
"label": "构建编译器 (Debug模式) compile builder",
"type": "shell",
"command": "dotnet build",
"group": "build",
"presentation": {
"echo": false,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": false
},
"problemMatcher": []
}
]
}