From d11f285680e9b569f68a1bd4fbd2b8e4cfe3f34b Mon Sep 17 00:00:00 2001 From: Mike Date: Sat, 7 Sep 2019 22:42:09 -0700 Subject: [PATCH] fix launch without build bug, this time for real --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3844555..8a2fffb 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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/" }, } },