SCED/.vscode/tasks.json

41 lines
926 B
JSON
Raw Permalink Normal View History

{
"version": "2.0.0",
"tasks": [
{
2024-11-10 09:22:39 -05:00
"label": "Arkham SCE: Build",
"type": "shell",
"command": "go",
"args": [
"run",
"main.go",
2024-11-10 09:19:07 -05:00
"--moddir=${workspaceFolder}",
"--modfile=${env:USERPROFILE}\\Documents\\My Games\\Tabletop Simulator\\Saves\\ArkhamSCE.json"
],
"options": {
"cwd": "C:\\git\\TTSModManager"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
2024-11-10 09:22:39 -05:00
},
{
"label": "Arkham SCE: Decompose",
"type": "shell",
"command": "go",
"args": [
"run",
"main.go",
"--moddir=${workspaceFolder}",
"--modfile=${env:USERPROFILE}\\Documents\\My Games\\Tabletop Simulator\\Saves\\ArkhamSCE.json",
"--reverse"
],
"options": {
"cwd": "C:\\git\\TTSModManager"
},
"problemMatcher": []
}
]
2024-11-10 09:24:08 -05:00
}