Files
2022NoWayHome/.vscode/launch.json
T

22 lines
545 B
JSON
Raw Normal View History

2021-11-15 16:26:16 -07:00
{
// 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": [
{
"type": "wpilib",
"name": "WPILib Desktop Debug",
"request": "launch",
2022-02-16 22:31:00 -07:00
"desktop": true
2021-11-15 16:26:16 -07:00
},
{
"type": "wpilib",
"name": "WPILib roboRIO Debug",
"request": "launch",
2022-02-25 01:33:32 -07:00
"desktop": false,
"postDebugTask": "downloadDeployDirectory"
2021-11-15 16:26:16 -07:00
}
]
}