Небольшое переформатирование
All checks were successful
Build and deploy / Publish image (push) Successful in 9m23s

This commit is contained in:
2025-01-20 22:24:00 +03:00
parent cf9e14c0fc
commit e85cb89e1c
10 changed files with 86 additions and 209 deletions

41
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,41 @@
{
"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"
}
]
}