chore: updated launch & tasks json files for better cross-platform development

This commit is contained in:
2025-07-12 16:07:12 +03:00
committed by Syntriax
parent 9bf6cabe23
commit b641ebde08
2 changed files with 40 additions and 12 deletions

27
.vscode/tasks.json vendored
View File

@@ -2,13 +2,32 @@
"version": "2.0.0",
"tasks": [
{
"label": "build-client",
"command": "dotnet",
"type": "process",
"args": [
"build"
"build",
"${workspaceFolder}/Platforms/Desktop"
],
"group": "build",
"problemMatcher": [],
"label": "build"
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build-server",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Platforms/Server"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}