oto/.vscode/launch.json
leedongmyung[desktop] 5e74ae06f3 Inital push
2023-10-28 22:06:44 +09:00

29 lines
No EOL
840 B
JSON

{
// 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": "oto_cli_linux",
"request": "launch",
"type": "dart",
"program": "./bin/oto_cli.dart",
"args": ["stop"]
},
{
"name": "oto_cli_mac",
"request": "launch",
"type": "dart",
"program": "./bin/oto_cli.dart",
"args": ["install"]
},
{
"name": "oto_cli_win",
"request": "launch",
"type": "dart",
"program": "./bin/oto_cli.dart",
"args": ["uninstall"]
}
]
}