diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -7,6 +7,8 @@ core-debug: dotnet build ${CORE_SOLUTION} -f netcoreapp3.1 +core-release: + dotnet build ${CORE_SOLUTION} -f netcoreapp3.1 -c Release framework-release: msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Release @@ -18,6 +20,13 @@ framework-debug: clean-obj msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Debug + +run-core-debug: + cd isometric-park-fna/bin/Debug/netcoreapp3.1; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="/Users/alys/repos/isometric-park-fna/fnalibs/osx" dotnet ./isometric-park-fna.dll + +run-core-release: + cd isometric-park-fna/bin/Release/netcoreapp3.1; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="/Users/alys/repos/isometric-park-fna/fnalibs/osx" dotnet ./isometric-park-fna.dll + #CONVENIENCE # Just using framework for releases since I know it works for now: