cirnogodot/.vscode/tasks.json

18 lines
No EOL
476 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "dotnet build ${workspaceFolder}/Cirno.csproj -c Debug -v normal -p:GodotTargetPlatform=windows",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"problemMatcher": "$msCompile"
}
]
}