props/MultiShop/.vscode/tasks.json

38 lines
1.1 KiB
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/server/MultiShop.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/server/MultiShop.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch all",
"command": "py",
"type": "process",
"args": [
"scripts/watch_all.py"
],
"problemMatcher": ["$msCompile", "$node-sass", "$jshint"],
},
]
}