Files
boredcareers/.vscode/tasks.json
T
2025-07-10 16:55:02 -07:00

17 lines
331 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "server-build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/boredcareers/boredcareers.csproj",
"-o",
"${workspaceFolder}/debug/",
],
"problemMatcher": "$msCompile"
},
]
}