2021-04-23 20:11:49 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "build",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
2021-07-10 02:47:40 +00:00
|
|
|
"${workspaceFolder}/server/MultiShop.csproj",
|
2021-04-23 20:11:49 +00:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "publish",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"publish",
|
2021-07-10 02:47:40 +00:00
|
|
|
"${workspaceFolder}/server/MultiShop.csproj",
|
2021-04-23 20:11:49 +00:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
2021-07-10 02:47:40 +00:00
|
|
|
"label": "watch all",
|
|
|
|
"command": "py",
|
2021-04-23 20:11:49 +00:00
|
|
|
"type": "process",
|
|
|
|
"args": [
|
2021-07-10 02:47:40 +00:00
|
|
|
"scripts/watch_all.py"
|
2021-04-23 20:11:49 +00:00
|
|
|
],
|
2021-07-10 02:47:40 +00:00
|
|
|
"problemMatcher": ["$msCompile", "$node-sass", "$jshint"],
|
|
|
|
},
|
2021-04-23 20:11:49 +00:00
|
|
|
]
|
|
|
|
}
|