Show More
Commit Description:
Merge in m5-tiles-and-trees! ?
Commit Description:
Merge in m5-tiles-and-trees! ?
References:
Show/Diff file:
Action:
.vscode/launch.json
59 lines | 2.0 KiB | application/json | JsonLexer
{
"version": "0.2.0",
"configurations": [
{
"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"
},
{
"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",
"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"
},
{
"type": "lldb",
"request": "attach",
"name": "Attach LLDB to Running Process",
"pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
},
{
"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",
"pid":"${command:pickMyProcess}"
}
]
}