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
Raw Normal View History

2021-01-28 13:20:49 +01:00
{
"version": "0.2.0",
"configurations": [
{
2021-01-30 05:19:27 +01:00
"name": "Build & Launch",
2021-01-28 13:20:49 +01:00
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/bin/OpenSkins",
"preLaunchTask": "compile",
"internalConsoleOptions": "openOnSessionStart"
2021-01-30 05:19:27 +01:00
},
{
"name": "Build & Launch - Standalone",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/bin/OpenSkins",
"preLaunchTask": "standalone",
"internalConsoleOptions": "openOnSessionStart"
2021-01-28 13:20:49 +01:00
}
]
}