cirnogodot/.vscode/tasks.json

18 lines
476 B
JSON
Raw Normal View History

2024-02-26 17:35:40 +01:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
2024-11-11 16:53:28 +01:00
"type": "shell",
"command": "dotnet build ${workspaceFolder}/Cirno.csproj -c Debug -v normal -p:GodotTargetPlatform=windows",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
2024-02-26 17:35:40 +01:00
"problemMatcher": "$msCompile"
}
]
}