AA.Compare Project to Match not runToDoCollectionFirst

Removed Layered AppSettings with Nested Objects at First Level
This commit is contained in:
2024-12-28 19:34:09 -07:00
parent 3ff8153393
commit 0215e838e7
110 changed files with 6331 additions and 1275 deletions

139
.vscode/tasks.json vendored
View File

@ -13,16 +13,6 @@
],
"problemMatcher": "$msCompile"
},
{
"label": "Format-Whitespaces",
"command": "dotnet",
"type": "process",
"args": [
"format",
"whitespace"
],
"problemMatcher": "$msCompile"
},
{
"label": "User Secrets Set",
"command": "dotnet",
@ -38,11 +28,34 @@
"problemMatcher": "$msCompile"
},
{
"label": "Format",
"label": "Format-Rename-Whitespaces",
"command": "dotnet",
"type": "process",
"args": [
"format",
"${workspaceFolder}/Rename/AA.Rename.csproj",
"whitespace"
],
"problemMatcher": "$msCompile"
},
{
"label": "Format-Metadata-Whitespaces",
"command": "dotnet",
"type": "process",
"args": [
"format",
"${workspaceFolder}/Metadata/AA.Metadata.csproj",
"whitespace"
],
"problemMatcher": "$msCompile"
},
{
"label": "Format-Rename",
"command": "dotnet",
"type": "process",
"args": [
"format",
"${workspaceFolder}/Rename/AA.Rename.csproj",
"--report",
".vscode",
"--verbosity",
@ -53,12 +66,112 @@
"problemMatcher": "$msCompile"
},
{
"label": "build",
"label": "Format-Metadata",
"command": "dotnet",
"type": "process",
"args": [
"format",
"${workspaceFolder}/Metadata/AA.Metadata.csproj",
"--report",
".vscode",
"--verbosity",
"detailed",
"--severity",
"warn"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-Shared",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/AA.sln",
"${workspaceFolder}/Shared/AA.Shared.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-Face",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Face/AA.Face.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-People",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/People/AA.People.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-Distance",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Distance/AA.Distance.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-Metadata",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Metadata/AA.Metadata.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-FaceRecognitionDotNet",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/FaceRecognitionDotNet/AA.FaceRecognitionDotNet.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-Rename",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Rename/AA.Rename.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-Compare",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Compare/AA.Compare.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],