{ "version": "0.2.0", "configurations": [ { "name": "Launch with 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}/fnalibs/osx" }, "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1", "console": "integratedTerminal", "internalConsoleOptions": "neverOpen" }, { "type": "lldb", "request": "attach", "name": "Attach LLDB to Running Process", "pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes }, { "name": "Attach .NET Core to Running Process", "type": "coreclr", "request": "attach", "processId":"${command:pickMyProcess}" } ] }