{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Build and Serve Docs", "type": "shell", "command": "powershell", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command", "cd C:/Users/falke/Documents/bonsaiDevel/IfcOpenShell/src/bonsai/docs/; .\\make html; cd _build/html; python -m http.server" ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": [] } ] }