cirnogodot/.vscode/tasks.json

18 lines
460 B
JSON
Raw Normal View History

2024-02-26 17:35:40 +01:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
2024-02-28 17:26:39 +01:00
"command": "F:/Apps/Godot_v4.2.1-stable_mono_win64/Godot_v4.2.1-stable_mono_win64.exe",
"type": "process",
2024-02-26 17:35:40 +01:00
"args": [
2024-02-28 17:26:39 +01:00
"--build-solutions",
"--path",
"${workspaceRoot}",
"--no-window",
"-q"
2024-02-26 17:35:40 +01:00
],
"problemMatcher": "$msCompile"
}
]
}