gcd-parser/.vscode/launch.json

40 lines
1.3 KiB
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": "Python: Current File (Integrated Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"args": ["D2Delta_300.gcd", "fenix5Plus_510.gcd", "GUPDATE.GCD", "fenix5Plus_510.gcd"],
"console": "integratedTerminal"
},
{
"name": "Python: gcdstruct.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/gcdstruct.py",
"args": ["D2Delta_300.gcd"],
"console": "integratedTerminal"
},
{
"name": "Python: Attach",
"type": "python",
"request": "attach",
"port": 5678,
"host": "localhost"
},
{
"name": "Python: Current File (External Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"args": ["fenix5Plus_510.gcd"],
"console": "externalTerminal"
}
]
}