{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format // note that default shell needs to be powershell "version": "2.0.0", "tasks": [ { "label": "Debug SketchUp 2021", "type": "shell", "command": "open -a '/Applications/SketchUp 2021/SketchUp.app' --args -rdebug 'ide port=7000'", "windows": { "command": "&'C:/Program Files/SketchUp/SketchUp 2021/SketchUp.exe' -rdebug 'ide port=7000'", }, "problemMatcher": [] }, { "label": "Debug SketchUp 2022", "type": "shell", "command": "open -a '/Applications/SketchUp 2022/SketchUp.app' --args -rdebug 'ide port=7000'", "windows": { "command": "&'C:/Program Files/SketchUp/SketchUp 2022/SketchUp.exe' -rdebug 'ide port=7000'", }, "problemMatcher": [] }, ] }