oto/.vscode/launch.json
2023-11-05 18:03:16 +09:00

36 lines
No EOL
1,015 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": "stop",
"request": "launch",
"type": "dart",
"program": "./bin/main.dart",
"args": ["stop", "-h"]
},
{
"name": "install",
"request": "launch",
"type": "dart",
"program": "./bin/main.dart",
"args": ["install", "-h"]
},
{
"name": "exe",
"request": "launch",
"type": "dart",
"program": "./bin/main.dart",
"args": ["exe", "-f ./build_win.yaml"]
},
{
"name": "test",
"request": "launch",
"type": "dart",
"program": "./test/test.dart",
"args": []
}
]
}