From 732ab310269e8be3899bd8c738dd54c54c3d9f1c Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 20 Feb 2019 00:40:42 -0800 Subject: [PATCH] build Nez and the current project initially added launch without building option --- .vscode/launch.json | 14 ++++++++++++++ getFNA.sh | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index f46341a..de33671 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,6 +17,20 @@ }, } }, + + { + "name": "Launch Without Building", + "type": "mono", + "request": "launch", + "program": "${workspaceFolder}/Fook/bin/Debug/Fook.exe", + "cwd": "${workspaceFolder}", + "osx":{ + "env": { + "DYLD_LIBRARY_PATH": "${workspaceFolder}/Fook/bin/Debug/osx/" + }, + } + }, + { "name": "Attach", "type": "mono", diff --git a/getFNA.sh b/getFNA.sh index 4eddb66..9ba3ce4 100755 --- a/getFNA.sh +++ b/getFNA.sh @@ -162,9 +162,9 @@ git submodule update command -v pbcopy > /dev/null 2>&1 if [ ! $? -eq 0 ]; then - printf "\n\nManually run the following command:\n\nnuget restore Nez/Nez.sln && msbuild Nez/Nez.sln && msbuild /t:restore $newProjectName\n\n" + printf "\n\nManually run the following command:\n\nnuget restore Nez/Nez.sln && msbuild Nez/Nez.sln && msbuild /t:restore $newProjectName && msbuild $newProjectName.sln\n\n" else - echo "nuget restore Nez/Nez.sln && msbuild Nez/Nez.sln && msbuild /t:restore $newProjectName" | pbcopy + echo "nuget restore Nez/Nez.sln && msbuild Nez/Nez.sln && msbuild /t:restore $newProjectName && msbuild $newProjectName.sln" | pbcopy echo "" echo "A build command was copied to your clipboard. Paste and run it now." echo ""