2021-04-23 20:11:49 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2021-07-21 00:08:57 +00:00
|
|
|
"label": "build",
|
2021-04-23 20:11:49 +00:00
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
2021-07-21 00:08:57 +00:00
|
|
|
"${workspaceFolder}/Props.csproj",
|
2021-04-23 20:11:49 +00:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
2021-07-21 00:08:57 +00:00
|
|
|
"label": "publish",
|
2021-04-23 20:11:49 +00:00
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"publish",
|
2021-07-21 00:08:57 +00:00
|
|
|
"${workspaceFolder}/Props.csproj",
|
2021-04-23 20:11:49 +00:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
2021-07-21 00:08:57 +00:00
|
|
|
"label": "watch",
|
2021-07-11 07:38:18 +00:00
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"watch",
|
2021-07-21 00:08:57 +00:00
|
|
|
"run",
|
|
|
|
"${workspaceFolder}/Props.csproj",
|
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
2021-07-12 01:13:37 +00:00
|
|
|
],
|
2021-07-21 00:08:57 +00:00
|
|
|
"problemMatcher": "$msCompile"
|
2021-07-21 06:58:49 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "reset database",
|
|
|
|
"command": "py",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
2021-07-21 08:03:49 +00:00
|
|
|
"${workspaceFolder}/../scripts/reset_db.py"
|
2021-07-21 06:58:49 +00:00
|
|
|
],
|
|
|
|
"problemMatcher": []
|
2021-07-11 07:38:18 +00:00
|
|
|
}
|
2021-04-23 20:11:49 +00:00
|
|
|
]
|
|
|
|
}
|