Super-Nostalgia-Zone/.vscode/tasks.json

24 lines
532 B
JSON

{
"version": "2.0.0",
"tasks":
[
{
"type": "shell",
"label": "Package Game (Core)",
"command": "rojo build --output SNZ_CORE.rbxmx core.project.json",
"group":
{
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "Package Game (Shared)",
"command": "rojo build --output SNZ_SHARED.rbxmx shared.project.json",
}
]
}