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