Show More
Commit Description:
Various UI improvements.
Commit Description:
Various UI improvements.
References:
File last commit:
Show/Diff file:
Action:
.vscode/launch.json
33 lines | 1.0 KiB | application/json | JsonLexer
33 lines | 1.0 KiB | application/json | JsonLexer
r63 | { | |||
"version": "0.2.0", | ||||
"configurations": [ | ||||
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": { | ||||
"LD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/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 | ||||
}, | ||||
{ | ||||
"name": "Attach .NET Core to Running Process", | ||||
"type": "coreclr", | ||||
"request": "attach", | ||||
"processId":"${command:pickMyProcess}" | ||||
} | ||||
r63 | ] | |||
} | ||||