Engine-Pong/.vscode/tasks.json

19 lines
311 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "dotnet",
"task": "build",
"problemMatcher": ["$msCompile"],
"group": {
"kind": "build",
"isDefault": true
},
"label": "build",
"options": {
"cwd": "${workspaceFolder}/Game"
}
}
]
}