shmodot/.vscode/tasks.json

18 lines
406 B
JSON
Raw Normal View History

2022-08-04 22:20:29 +02:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "/usr/bin/godot-mono",
"type": "process",
"args": [
"--build-solutions",
"--path",
"${workspaceRoot}",
"--no-window",
"-q"
],
"problemMatcher": "$msCompile"
}
]
}