fix launch without build bug, this time for real

This commit is contained in:
Mike 2019-09-07 22:42:09 -07:00
parent dbf800af4d
commit d11f285680

4
.vscode/launch.json vendored
View File

@ -22,11 +22,11 @@
"name": "Launch Without Building",
"type": "mono",
"request": "launch",
"program": "${workspaceFolder}/Fook/bin/Debug/project_name.exe",
"program": "${workspaceFolder}/project_name/bin/Debug/project_name.exe",
"cwd": "${workspaceFolder}",
"osx":{
"env": {
"DYLD_LIBRARY_PATH": "${workspaceFolder}/Fook/bin/Debug/osx/"
"DYLD_LIBRARY_PATH": "${workspaceFolder}/project_name/bin/Debug/osx/"
},
}
},