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

61 lines
1.5 KiB
JSON
Raw Normal View History

2020-06-20 10:23:14 +02:00
{
"version": "2.0.0",
"tasks": [
{
2024-02-11 17:28:50 +01:00
"label": "format",
"type": "shell",
"group": "none",
"command": ".vscode/fmt.sh",
"problemMatcher": []
},
{
"label": "build mod",
2020-06-20 10:23:14 +02:00
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
2024-02-11 17:28:50 +01:00
"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"
]
2020-06-20 10:23:14 +02:00
},
2024-02-11 17:28:50 +01:00
{
"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": []
}
2020-06-20 10:23:14 +02:00
]
}