Show More
Commit Description:
Merge in m5-tiles-and-trees! ?
Commit Description:
Merge in m5-tiles-and-trees! ?
References:
File last commit:
Show/Diff file:
Action:
.vscode/launch.json
59 lines | 2.0 KiB | application/json | JsonLexer
59 lines | 2.0 KiB | application/json | JsonLexer
r63 | { | |||
"version": "0.2.0", | ||||
"configurations": [ | ||||
r608 | ||||
{ | ||||
"name": "Launch with Core Debugger No Build", | ||||
"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", | ||||
"LD_LIBRARY_PATH": "${workspaceFolder}/fnalibs/lib64", | ||||
"DYLD_LIBRARY_PATH": "${workspaceFolder}/fnalibs/osx" | ||||
}, | ||||
"cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1", | ||||
"console": "integratedTerminal", | ||||
"internalConsoleOptions": "neverOpen" | ||||
}, | ||||
r222 | { | |||
"name": "Launch with Core Debugger", | ||||
r63 | "type": "coreclr", | |||
"request": "launch", | ||||
"preLaunchTask": "Build: Core Debug", | ||||
"program": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/isometric-park-fna.dll", | ||||
"args": [], | ||||
"env": { | ||||
r519 | // "LD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/lib64", | |||
"LD_LIBRARY_PATH": "${workspaceFolder}/fnalibs/lib64", | ||||
r194 | "DYLD_LIBRARY_PATH": "${workspaceFolder}/fnalibs/osx" | |||
r63 | }, | |||
r143 | "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1", | |||
r63 | "console": "integratedTerminal", | |||
"internalConsoleOptions": "neverOpen" | ||||
r222 | }, | |||
{ | ||||
"type": "lldb", | ||||
"request": "attach", | ||||
"name": "Attach LLDB to Running Process", | ||||
"pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes | ||||
}, | ||||
r605 | ||||
{ | ||||
"type": "lldb", | ||||
"request": "attach", | ||||
"name": "Attach LLDB to Running Process", | ||||
"pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes | ||||
}, | ||||
r222 | ||||
{ | ||||
"name": "Attach .NET Core to Running Process", | ||||
"type": "coreclr", | ||||
"request": "attach", | ||||
r605 | "pid":"${command:pickMyProcess}" | |||
r222 | } | |||
r63 | ] | |||
} | ||||