Show More
Commit Description:
Draw water at the base tile level.
Commit Description:
Draw water at the base tile level.
Show/Diff file:
Action:
.vscode/launch.json
41 lines | 1.3 KiB | application/json | JsonLexer
Add VS Code tasks.
r63 {
"version": "0.2.0",
"configurations": [
Add Linq library to core project file.
r222 {
"name": "Launch with Core Debugger",
Add VS Code tasks.
r63 "type": "coreclr",
"request": "launch",
"preLaunchTask": "Build: Core Debug",
"program": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/isometric-park-fna.dll",
"args": [],
"env": {
Add better support for .NET Core builds.
r519 // "LD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/lib64",
"LD_LIBRARY_PATH": "${workspaceFolder}/fnalibs/lib64",
Add contracts window.
r194 "DYLD_LIBRARY_PATH": "${workspaceFolder}/fnalibs/osx"
Add VS Code tasks.
r63 },
Add more stories.
r143 "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1",
Add VS Code tasks.
r63 "console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
Add Linq library to core project file.
r222 },
{
"type": "lldb",
"request": "attach",
"name": "Attach LLDB to Running Process",
"pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
},
Tweak VSCode config.
r605
{
"type": "lldb",
"request": "attach",
"name": "Attach LLDB to Running Process",
"pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
},
Add Linq library to core project file.
r222
{
"name": "Attach .NET Core to Running Process",
"type": "coreclr",
"request": "attach",
Tweak VSCode config.
r605 "pid":"${command:pickMyProcess}"
Add Linq library to core project file.
r222 }
Add VS Code tasks.
r63 ]
}