Ready to beta test

This commit is contained in:
2022-08-26 15:40:05 -07:00
parent 121c0c4d0c
commit b3e643c221
90 changed files with 5023 additions and 20 deletions

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

@ -0,0 +1,31 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"detail": "classlib",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/classlib/Mesa-Backlog.Library.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build",
"detail": "blazorserver",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/blazorserver/Mesa-Backlog.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}