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