rimworld-mod-template/.vscode/tasks.json

61 lines
No EOL
1.5 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "format",
"type": "shell",
"group": "none",
"command": ".vscode/fmt.sh",
"problemMatcher": []
},
{
"label": "build mod",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"command": ".vscode/build.sh",
"problemMatcher": [
"$msCompile"
]
},
{
"label": "run game",
"type": "shell",
"group": {
"kind": "none",
"isDefault": true
},
"command": ".vscode/launch.sh",
"problemMatcher": [],
"dependsOn": [
"link mod directory",
"build mod"
]
},
{
"label": "run game (quicktest)",
"type": "shell",
"group": {
"kind": "none",
"isDefault": true
},
"command": ".vscode/launch.sh -quicktest",
"problemMatcher": [],
"dependsOn": [
"link mod directory",
"build mod"
]
},
{
"label": "link mod directory",
"type": "shell",
"group": {
"kind": "none"
},
"command": ".vscode/setup.sh",
"problemMatcher": []
}
]
}