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",
|
2022-05-01 20:47:14 +03:00
|
|
|
"name": "Topgrade",
|
2022-04-23 15:09:54 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
|
"cargo": {
|
|
|
|
|
"args": [
|
|
|
|
|
"build",
|
2022-11-02 10:10:16 +00:00
|
|
|
"--bin=topgrade-rs",
|
|
|
|
|
"--package=topgrade-rs"
|
2022-04-23 15:09:54 +03:00
|
|
|
],
|
|
|
|
|
"filter": {
|
2022-11-02 10:10:16 +00:00
|
|
|
"name": "topgrade-rs",
|
2022-04-23 15:09:54 +03:00
|
|
|
"kind": "bin"
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-05-01 20:47:14 +03:00
|
|
|
"args": [
|
|
|
|
|
"--only",
|
|
|
|
|
"${input:step}",
|
|
|
|
|
"-v"
|
|
|
|
|
],
|
2022-04-23 15:09:54 +03:00
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
|
},
|
2022-05-01 20:47:14 +03:00
|
|
|
],
|
|
|
|
|
"inputs": [
|
2022-04-23 15:09:54 +03:00
|
|
|
{
|
2022-05-01 20:47:14 +03:00
|
|
|
"type": "promptString",
|
|
|
|
|
"id": "step",
|
2022-05-07 15:25:51 +03:00
|
|
|
"description": "step name",
|
2022-04-23 15:09:54 +03:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|