Delete launch.json

This commit is contained in:
Víctor Martínez 2021-07-29 19:16:37 +02:00 committed by GitHub
parent 4f6c47899b
commit d2ec72ca15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
.vscode/launch.json vendored
View file

@ -1,24 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceRoot}/target/debug/s3-download",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true
},
{
"name": "(OSX) Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/s3-download",
"args": [],
"cwd": "${workspaceRoot}",
}
]
}