/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.vscode/tasks.json
80 строк
2 KB
Shreyas Jejurkar
feat (Codespaces) - Added Commonly used tasks to `tasks.json` for VSCode users. (#37873)
01 ноя 2021, 21:22
Не верифицирован
01 ноя 2021, 21:22
fa25640
Код
Авторство
О чём код?
{ "version": "2.0.0", "inputs": [ { "type": "pickString", "default": "Debug", "options": ["Debug","Release"], "id": "configurationType", "description": "Select configuration type", } ], "tasks": [ { "label": "Restore projects", "type": "shell", "command": "./restore.sh", "windows": { "command": ".\\restore.cmd" }, "group": "build", "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Build entire repository (Debug/Release)", "type": "shell", "command": "./eng/build.sh -Configuration ${input:configurationType}", "windows": { "command": ".\\eng\\build.cmd -Configuration ${input:configurationType}" }, "group": "build", "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Run all test projects", "type": "shell", "command": "./eng/build.sh -test", "windows": { "command": ".\\eng\\build.cmd -test" }, "group": "test", "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Pack assets", "type": "shell", "command": "./eng/build.sh --pack", "windows": { "command": ".\\eng\\build.cmd -pack" }, "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Clean artifacts", "type": "shell", "command": "./clean.sh", "windows": { "command": ".\\clean.cmd" }, "group": "none", "presentation": { "reveal": "always", "panel": "new" }, "problemMatcher": [] } ] }