Files
topgrade/.vscode/launch.json
Roey Darwish Dror 14809322b4 Vagrant boxes (#905)
2022-04-23 12:09:54 +00:00

47 lines
1.3 KiB
JSON

{
// 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": "lldb",
"request": "launch",
"name": "Debug executable 'topgrade'",
"console": "integratedTerminal",
"cargo": {
"args": [
"build",
"--bin=topgrade",
"--package=topgrade"
],
"filter": {
"name": "topgrade",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'topgrade'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=topgrade",
"--package=topgrade"
],
"filter": {
"name": "topgrade",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}