chuanyue-service/.vscode/launch.json
2024-04-16 16:40:29 +08:00

14 lines
364 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "rust",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/${workspaceFolderBasename}",
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask":"build",
}
]
}