{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "build", "type": "shell", "command": "dotnet", "args": [ "build" ], "problemMatcher": [] }, { "dependsOn": ["build"], "label": "launch debug server", "type": "process", "command": "powershell", "problemMatcher": [], "args": ["-ExecutionPolicy", "Bypass", "-File", "./start_process.ps1"] }, { "label": "stop debug server", "type": "process", "command": "powershell", "problemMatcher": [], "args": ["-ExecutionPolicy", "Bypass", "-File", "./end_process.ps1"] } ] }