diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Attach to Core Debugger", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "Build: Core Debug", + "program": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/isometric-park-fna.dll", + "args": [], + "env": { + "LD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/lib64", + "DYLD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/osx" + }, + "cwd": "${workspaceFolder}", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen" + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,224 @@ +{ + "version": "2.0.0", + "options": { + "cwd": "${workspaceRoot}" + }, + "windows": { + "options": { + "shell": { + "executable": "cmd.exe", + "args": [ + "/d", + "/c" + ] + } + } + }, + "presentation": { + "reveal": "always", + "focus": true, + "panel": "shared" + }, + "tasks": [ + { + "label": "Build: Framework Release", + "command": "msbuild", + "args": [ + "-restore:True", + "${workspaceFolder}/isometric-park-fna.sln", + "-p:Configuration=Release" + ], + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": "$msCompile" + }, + { + "label": "Run: Framework Release", + "command": "mono", + "args": [ + "isometric-park-fna.exe" + ], + "options": { + "env": { + "LD_LIBRARY_PATH": "./lib64", + "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64s" + }, + "cwd": "${workspaceFolder}/isometric-park-fna/bin/Release/" + }, + "type": "process", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Build & Run: Framework Release", + "dependsOn": [ + "Build: Framework Release", + "Run: Framework Release" + ], + "dependsOrder": "sequence", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Build: Framework Debug", + "command": "msbuild", + "args": [ + "-restore:True", + "${workspaceFolder}/isometric-park-fna.sln", + "-p:Configuration=Debug" + ], + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Run: Framework Debug", + "command": "mono", + "args": [ + "isometric-park-fna.exe" + ], + "options": { + "env": { + "LD_LIBRARY_PATH": "./lib64", + "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64" + }, + "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug" + }, + "type": "process", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Build & Run: Framework Debug", + "dependsOn": [ + "Build: Framework Debug", + "Run: Framework Debug" + ], + "dependsOrder": "sequence", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Build & Run: Core Debug", + "type": "shell", + "dependsOrder": "sequence", + "dependsOn": [ + "Build: Core Debug", + "Run: Core Debug" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Build: Core Debug", + "command": "dotnet", + "args": [ + "build", + "./isometric-park-fna.Core.sln", + "-f", + "netcoreapp3.1" + ], + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Run: Core Debug", + "command": "dotnet", + "args": [ + "./isometric-park-fna.dll" + ], + "options": { + "env": { + "LD_LIBRARY_PATH": "./lib64", + "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64" + }, + "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1" + }, + "type": "process", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Build: Core Release", + "command": "dotnet", + "args": [ + "build", + "./isometric-park-fna.Core.sln", + "--configuration", + "Release", + "-f", + "netcoreapp3.1" + ], + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Run: Core Release", + "command": "dotnet", + "args": [ + "./isometric-park-fna.dll" + ], + "options": { + "env": { + "LD_LIBRARY_PATH": "./lib64", + "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64" + }, + "cwd": "${workspaceFolder}/isometric-park-fna/bin/Release/netcoreapp3.1" + }, + "type": "process", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Build & Run: Core Release", + "dependsOrder": "sequence", + "dependsOn": [ + "Build: Core Release", + "Run: Core Release" + ], + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + } + ] +} diff --git a/SpriteFontPlus/src/obj/Debug/net45/SpriteFontPlus.FNA.csprojAssemblyReference.cache b/SpriteFontPlus/src/obj/Debug/net45/SpriteFontPlus.FNA.csprojAssemblyReference.cache index 743c6d6e54f8ef664f3a7669a6e1f2d6df812d03..57ef9c1ea74c9cdeccb9cdcf0dfe5cc2e53e6736 GIT binary patch literal 424 zc$|Gvu};G<5Oru0TEb8kCWf#_R-!6`B|;(+LIMORRR;#pCAolAH%7KIlyBxAzy}c% zaKrQY{Lb&4%{<1~hYMOM_IDgS-iSskqdLpa2O(R&1hY20R2q|bh1v+!7g^3Tp7Jz_ z%R$;fW6|SaHOM5s8)_+Bp@I;pGtr9(Uj4Xc<$Zf RmSB*1-aHsTV;+u4^a;1Ib_D