Files
sms-task-one/.vscode/tasks.json
Пытков Роман 50626c6ac6 Базово работает
gRPC на отдельном порту
2026-06-01 18:02:48 +03:00

20 lines
464 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build ApiServer",
"type": "shell",
"command": "dotnet build ${workspaceFolder}/src/ApiServer/ApiServer.csproj",
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "build Console",
"type": "shell",
"command": "dotnet build ${workspaceFolder}/src/Console/Console.csproj",
"group": "build",
"problemMatcher": "$msCompile"
}
]
}