Files
HexUnlocked/.vscode/tasks.json
T
2026-06-17 20:55:55 -03:00

26 lines
607 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Create project",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"command": "${workspaceRoot}\\create-project.ps1"
},
},
{
"label": "Format code",
"type": "shell",
"group": {
"kind": "none",
},
"windows": {
"command": "${workspaceRoot}\\format-code.ps1"
},
}
],
}