/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
.vscode/tasks.json
102 строки
3 KB
Andrey Ovsiankin
Автоматически обновлен формат файла tasks
26 июл 2021, 11:47
26 июл 2021, 11:47
693d1c8
Код
Авторство
О чём код?
{ "version": "2.0.0", "command": "oscript", "args": [ "-encoding=utf-8" ], "tasks": [ { "label": "Testing project", "type": "shell", "command": "oscript", "args": [ "-encoding=utf-8", "${workspaceRoot}/tests/testrunner.os", "-runall", "${workspaceRoot}/tests" ], "problemMatcher": { "fileLocation": "absolute", "pattern": { "regexp": "{Модуль\\s+(.+)\\s\\/\\s.*:\\s+(\\d+)\\s+\\/\\s+([^{]*)", "file": 1, "location": 2, "message": 3 } } }, { "label": "Test current test-file", "type": "shell", "command": "oscript", "args": [ "-encoding=utf-8", "${workspaceRoot}/tests/testrunner.os", "-run", "${file}" ], "problemMatcher": { "fileLocation": "absolute", "pattern": { "regexp": "{Модуль\\s+(.+)\\s\\/\\s.*:\\s+(\\d+)\\s+\\/\\s+([^{]*)", "file": 1, "location": 2, "message": 3 } } }, { "label": "OneScript: compile", "type": "shell", "command": "oscript", "args": [ "-encoding=utf-8", "-compile", "${file}" ], "problemMatcher": [] }, { "label": "OneScript: check", "type": "shell", "command": "oscript", "args": [ "-encoding=utf-8", "-check", "${file}" ], "problemMatcher": [] }, { "label": "OneScript: make", "type": "shell", "command": "oscript", "args": [ "-encoding=utf-8", "-make", "${file}", "${fileBasename}.exe" ], "problemMatcher": [] }, { "label": "OneScript: run", "type": "shell", "command": "oscript", "args": [ "-encoding=utf-8", "${file}" ], "problemMatcher": { "fileLocation": "absolute", "pattern": { "regexp": "{Модуль\\s+(.+)\\s\\/\\s.*:\\s+(\\d+)\\s+\\/\\s+([^{]*)", "file": 1, "location": 2, "message": 3 } }, "group": "build" } ] }