/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
tests/.vscode/launch.json
32 строки
1 KB
Andrei Ovsiankin
Добавил launch.json для старта тестов в git
10 май 2024, 11:54
10 май 2024, 11:54
d6c2d47
Код
Авторство
О чём код?
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "LINUX: Run via version 2.0", "type": "oscript", "request": "launch", "program": "${workspaceRoot}/testrunner.os", "args": ["-run", "${file}"], "cwd": "${workspaceRoot}", "env": {}, "runtimeExecutable": "${workspaceRoot}/../src/oscript/bin/LinuxDebug/net6.0/oscript", "runtimeArgs": [], "debugPort": 2801 }, { "name": "WINDOWS: Run via version 2.0", "type": "oscript", "request": "launch", "program": "${workspaceRoot}/testrunner.os", "args": ["-run", "${file}"], "cwd": "${workspaceRoot}", "env": {}, "runtimeExecutable": "${workspaceRoot}/../src/oscript/bin/Debug/net6.0/oscript", "runtimeArgs": [], "debugPort": 2801 } ] }