betabot-2023/.vscode/launch.json

28 lines
655 B
JSON
Raw Permalink Normal View History

2022-10-24 19:44:45 -04: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": [
2022-11-28 19:06:25 -05:00
{
"type": "java",
"name": "Launch Main",
"request": "launch",
"mainClass": "frc.robot.Main",
"projectName": "betabots"
},
2022-10-24 19:44:45 -04:00
{
"type": "wpilib",
"name": "WPILib Desktop Debug",
"request": "launch",
2022-11-28 19:06:25 -05:00
"desktop": true
2022-10-24 19:44:45 -04:00
},
{
"type": "wpilib",
"name": "WPILib roboRIO Debug",
"request": "launch",
2022-11-28 19:06:25 -05:00
"desktop": false
2022-10-24 19:44:45 -04:00
}
]
}