This commit is contained in:
2024-03-10 20:10:05 +00:00
parent 89e1b5a235
commit d6180aa154
24 changed files with 255 additions and 78 deletions

11
.vscode/tasks.json vendored
View File

@ -90,20 +90,13 @@
],
"problemMatcher": "$msCompile"
},
{
"label": "copyTestConfig",
"command": "dotnet",
"type": "process",
"args": [ "build", "/t:CopyTestConfig" ],
"group": "test"
},
{
"label": "test",
"command": "dotnet",
"type": "process",
"options": {
"env": {
"ASPNETCORE_ENVIRONMENT": "Testing"
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"args": [
@ -112,7 +105,7 @@
"--logger:xunit"
],
"problemMatcher": "$msCompile",
"dependsOn": [ "build", "copyTestConfig"],
"dependsOn": [ "build"],
"group": "test"
},
{