Release !

This commit is contained in:
2023-05-09 23:44:25 +01:00
parent 7987fa04a0
commit 72839e8251
14 changed files with 42 additions and 72 deletions

27
.vscode/tasks.json vendored
View File

@ -11,7 +11,8 @@
"/consoleloggerparameters:NoSummary",
"--ignore-failed-sources"
],
"problemMatcher": "$msCompile"
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "build",
@ -23,7 +24,8 @@
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "db-upgrade",
@ -40,9 +42,9 @@
"env": {
"ASPNETCORE_ENV": "Development"
}
}
},
"dependsOn":["build"],
"group": "test"
},
{
@ -56,7 +58,8 @@
"/consoleloggerparameters:NoSummary",
"/restore"
],
"problemMatcher": "$msCompile"
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "publish",
@ -73,7 +76,8 @@
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}"
}
},
"group": "none"
},
{
"label": "monopublish",
@ -90,7 +94,8 @@
"label": "copyTestConfig",
"command": "dotnet",
"type": "process",
"args": [ "build", "/t:CopyTestConfig" ]
"args": [ "build", "/t:CopyTestConfig" ],
"group": "test"
},
{
"label": "test",
@ -107,7 +112,8 @@
"--logger:xunit"
],
"problemMatcher": "$msCompile",
"dependsOn": [ "build", "copyTestConfig"]
"dependsOn": [ "build", "copyTestConfig"],
"group": "test"
},
{
"label": "watch",
@ -123,7 +129,8 @@
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"problemMatcher": "$msCompile"
"problemMatcher": "$msCompile",
"group": "test"
}
]
}