SCED/.vscode/tasks.json

24 lines
512 B
JSON
Raw Permalink Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "Build with TTS Mod Manager",
"type": "shell",
"command": "go",
"args": [
"run",
"main.go",
"--moddir=C:\\git\\SCED",
"--modfile=${env:USERPROFILE}\\Documents\\My Games\\Tabletop Simulator\\Saves\\composed.json"
],
"options": {
"cwd": "C:\\git\\TTSModManager"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}