Files
Encelado/Encelado/.vscode/launch.json
T

19 lines
651 B
JSON

{
// One way to launch, on purpose. Encelado is a desktop application: F5 here starts
// the same window you get by double-clicking Encelado.exe. Everything else — login,
// start/stop, backtest, settings — lives inside that window.
"version": "0.2.0",
"configurations": [
{
"name": "Encelado",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/Encelado.Bot/bin/Debug/net10.0-windows/Encelado.exe",
"cwd": "${workspaceFolder}/src/Encelado.Bot/bin/Debug/net10.0-windows",
"console": "internalConsole",
"stopAtEntry": false
}
]
}