Merge pull request #972 from argonui/updated-build-task

Updated tasks
This commit is contained in:
dscarpac 2024-11-14 07:21:23 -06:00 committed by GitHub
commit e15f23c9ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

22
.vscode/tasks.json vendored
View File

@ -2,14 +2,14 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"label": "Build with TTS Mod Manager", "label": "Arkham SCE: Build",
"type": "shell", "type": "shell",
"command": "go", "command": "go",
"args": [ "args": [
"run", "run",
"main.go", "main.go",
"--moddir=C:\\git\\SCED", "--moddir=${workspaceFolder}",
"--modfile=${env:USERPROFILE}\\Documents\\My Games\\Tabletop Simulator\\Saves\\composed.json" "--modfile=${env:USERPROFILE}\\Documents\\My Games\\Tabletop Simulator\\Saves\\ArkhamSCE.json"
], ],
"options": { "options": {
"cwd": "C:\\git\\TTSModManager" "cwd": "C:\\git\\TTSModManager"
@ -19,6 +19,22 @@
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
} }
},
{
"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": []
} }
] ]
} }