IoT-Simulator/.vscode/launch.json
Christian Risi 9f86b58aba V0.6.5 Arroyo Toad
Added configuration to send messages

V0.6.5.a Arroyo Toad

Problems with a detached head
2024-12-16 10:28:51 +01:00

23 lines
798 B
JSON

{
"configurations": [
{
"type": "lldb",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:workspace}",
"name": "Debug IoT-Simulator",
"envFile": "${workspaceFolder}/env/debug/.debug.env",
"program": "${workspaceFolder}/.build/debug/App",
"preLaunchTask": "swift: Build Debug IoT-Simulator"
},
{
"type": "lldb",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:workspace}",
"name": "Release IoT-Simulator",
"program": "${workspaceFolder:workspace}/.build/release/IoT-Simulator",
"preLaunchTask": "swift: Build Release IoT-Simulator"
}
]
}