Engine-Pong/.vscode/tasks.json

19 lines
311 B
JSON
Raw Normal View History

2023-11-27 10:36:23 +03:00
{
"version": "2.0.0",
"tasks": [
{
"type": "dotnet",
"task": "build",
"problemMatcher": ["$msCompile"],
"group": {
"kind": "build",
"isDefault": true
},
2024-02-04 12:22:17 +03:00
"label": "build",
"options": {
"cwd": "${workspaceFolder}/Game"
}
2023-11-27 10:36:23 +03:00
}
]
}