Show More
Commit Description:
Various UI improvements.
Commit Description:
Various UI improvements.
References:
File last commit:
Show/Diff file:
Action:
.vscode/tasks.json
226 lines | 5.3 KiB | application/json | JsonLexer
226 lines | 5.3 KiB | application/json | JsonLexer
r63 | { | |||
"version": "2.0.0", | ||||
"options": { | ||||
"cwd": "${workspaceRoot}" | ||||
}, | ||||
"windows": { | ||||
"options": { | ||||
"shell": { | ||||
"executable": "cmd.exe", | ||||
"args": [ | ||||
"/d", | ||||
"/c" | ||||
] | ||||
} | ||||
} | ||||
}, | ||||
"presentation": { | ||||
"reveal": "always", | ||||
"focus": true, | ||||
"panel": "shared" | ||||
}, | ||||
"tasks": [ | ||||
{ | ||||
"label": "Build: Framework Release", | ||||
"command": "msbuild", | ||||
"args": [ | ||||
"-restore:True", | ||||
"${workspaceFolder}/isometric-park-fna.sln", | ||||
"-p:Configuration=Release" | ||||
], | ||||
"type": "shell", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": "$msCompile" | ||||
}, | ||||
{ | ||||
"label": "Run: Framework Release", | ||||
"command": "mono", | ||||
"args": [ | ||||
"isometric-park-fna.exe" | ||||
], | ||||
"options": { | ||||
"env": { | ||||
r106 | "LD_LIBRARY_PATH": "../../../fnalibs/lib64", | |||
r63 | "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64s" | |||
}, | ||||
"cwd": "${workspaceFolder}/isometric-park-fna/bin/Release/" | ||||
}, | ||||
"type": "process", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Build & Run: Framework Release", | ||||
"dependsOn": [ | ||||
"Build: Framework Release", | ||||
"Run: Framework Release" | ||||
], | ||||
"dependsOrder": "sequence", | ||||
"type": "shell", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Build: Framework Debug", | ||||
"command": "msbuild", | ||||
"args": [ | ||||
"-restore:True", | ||||
"${workspaceFolder}/isometric-park-fna.sln", | ||||
"-p:Configuration=Debug" | ||||
], | ||||
"type": "shell", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Run: Framework Debug", | ||||
"command": "mono", | ||||
"args": [ | ||||
"isometric-park-fna.exe" | ||||
], | ||||
"options": { | ||||
"env": { | ||||
r106 | "LD_LIBRARY_PATH": "../../../fnalibs/lib64", | |||
r63 | "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64" | |||
}, | ||||
"cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug" | ||||
}, | ||||
"type": "process", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Build & Run: Framework Debug", | ||||
"dependsOn": [ | ||||
"Build: Framework Debug", | ||||
"Run: Framework Debug" | ||||
], | ||||
"dependsOrder": "sequence", | ||||
"type": "shell", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
r106 | "label": "Build Run: Core Debug", | |||
r63 | "type": "shell", | |||
"dependsOrder": "sequence", | ||||
"dependsOn": [ | ||||
"Build: Core Debug", | ||||
"Run: Core Debug" | ||||
], | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Build: Core Debug", | ||||
"command": "dotnet", | ||||
"args": [ | ||||
"build", | ||||
r100 | "./isometric-park-fna-core.sln", | |||
r63 | "-f", | |||
"netcoreapp3.1" | ||||
], | ||||
"type": "shell", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Run: Core Debug", | ||||
"command": "dotnet", | ||||
"args": [ | ||||
"./isometric-park-fna.dll" | ||||
], | ||||
"options": { | ||||
"env": { | ||||
r106 | "LD_LIBRARY_PATH": "../../../../fnalibs/lib64", | |||
r100 | "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64", | |||
// "DYLD_LIBRARY_PATH": "./osx" | ||||
"DYLD_PRINT_LIBRARIES": "TRUE" | ||||
r63 | }, | |||
"cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1" | ||||
}, | ||||
"type": "process", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Build: Core Release", | ||||
"command": "dotnet", | ||||
"args": [ | ||||
"build", | ||||
r100 | "./isometric-park-fna-core.sln", | |||
r63 | "--configuration", | |||
"Release", | ||||
"-f", | ||||
"netcoreapp3.1" | ||||
], | ||||
"type": "shell", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Run: Core Release", | ||||
"command": "dotnet", | ||||
"args": [ | ||||
"./isometric-park-fna.dll" | ||||
], | ||||
"options": { | ||||
"env": { | ||||
r106 | "LD_LIBRARY_PATH": "../../../../fnalibs/lib64", | |||
r63 | "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64" | |||
}, | ||||
"cwd": "${workspaceFolder}/isometric-park-fna/bin/Release/netcoreapp3.1" | ||||
}, | ||||
"type": "process", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
}, | ||||
{ | ||||
"label": "Build & Run: Core Release", | ||||
"dependsOrder": "sequence", | ||||
"dependsOn": [ | ||||
"Build: Core Release", | ||||
"Run: Core Release" | ||||
], | ||||
"type": "shell", | ||||
"group": { | ||||
"kind": "build", | ||||
"isDefault": true | ||||
}, | ||||
"problemMatcher": [] | ||||
} | ||||
] | ||||
} | ||||