This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
openskins/.vscode/launch.json

25 lines
678 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Build & Launch",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/bin/OpenSkins",
"preLaunchTask": "compile",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "Build & Launch - Standalone",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/bin/OpenSkins",
"preLaunchTask": "standalone",
"internalConsoleOptions": "openOnSessionStart"
}
]
}