artifacts

This commit is contained in:
Paul Schneider
2021-05-09 16:28:20 +01:00
parent db6f514fb5
commit 61dc82df5b
3 changed files with 21 additions and 27 deletions

19
.vscode/tasks.json vendored
View File

@ -32,7 +32,22 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/nuget-host.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "test",
"command": "dotnet",
"type": "process",
"options": {
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"args": [
"test",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
@ -58,7 +73,7 @@
],
"options": {
"env": {
"ASPNETCORE_ENV": "Development"
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"problemMatcher": "$msCompile"