Files
Godot-test/.vscode/tasks.json
2025-06-16 07:59:50 +08:00

18 lines
422 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "<insert-godot-executable-path-here>",
"type": "process",
"args": [
"--build-solutions",
"--path",
"${workspaceRoot}",
"--no-window",
"-q"
],
"problemMatcher": "$msCompile"
}
]
}