Files
topgrade/.vscode/launch.json

39 lines
1.0 KiB
JSON
Raw Normal View History

2022-04-23 15:09:54 +03: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": "lldb",
"request": "launch",
"name": "Topgrade",
2022-04-23 15:09:54 +03:00
"console": "integratedTerminal",
"cargo": {
"args": [
"build",
"--bin=topgrade-rs",
"--package=topgrade-rs"
2022-04-23 15:09:54 +03:00
],
"filter": {
"name": "topgrade-rs",
2022-04-23 15:09:54 +03:00
"kind": "bin"
}
},
"args": [
"--only",
"${input:step}",
"-v"
],
2022-04-23 15:09:54 +03:00
"cwd": "${workspaceFolder}"
},
],
"inputs": [
2022-04-23 15:09:54 +03:00
{
"type": "promptString",
"id": "step",
"description": "step name",
2022-04-23 15:09:54 +03:00
}
]
}