Files
Otchislator/.vscode/tasks.json
Sergey Karmanov e85cb89e1c
All checks were successful
Build and deploy / Publish image (push) Successful in 9m23s
Небольшое переформатирование
2025-01-20 22:24:00 +03:00

41 lines
1.2 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/Otchinslator/Otchinslator.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src/Otchinslator/Otchinslator.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/src/Otchinslator/Otchinslator.csproj"
],
"problemMatcher": "$msCompile"
}
]
}