WPF реализация

This commit is contained in:
Roman Pytkov
2026-06-04 22:02:15 +03:00
parent 85e9092d14
commit f9da101c4a
17 changed files with 521 additions and 4 deletions

27
.vscode/tasks.json vendored
View File

@@ -41,6 +41,33 @@
},
"problemMatcher": "$msCompile"
},
{
"label": "build-wpf",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/Sms.TaskTwo.Wpf/Sms.TaskTwo.Wpf.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "run-wpf",
"command": "dotnet",
"type": "process",
"args": [
"run",
"--project",
"${workspaceFolder}/src/Sms.TaskTwo.Wpf/Sms.TaskTwo.Wpf.csproj",
"--no-build"
],
"group": "none",
"problemMatcher": "$msCompile",
"dependsOn": "build-wpf"
},
{
"label": "run-avalonia",
"command": "dotnet",