{ "version": "2.0.0", "tasks": [ { // preLaunchTask for the emulator debug configurations. Idempotent: it // exits at once when a device is already attached, so pressing F5 twice // does not start two emulators. "label": "Avvia emulatore Android", "type": "shell", "command": "powershell", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceFolder}/tool/start_emulator.ps1" ], "problemMatcher": [], "presentation": { "reveal": "silent", "panel": "shared", "clear": true } }, { "label": "Verifica (format, analyze, test, build)", "type": "shell", "command": "powershell", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceFolder}/tool/verify.ps1" ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": ["$dart-build_runner"] }, { "label": "Verifica rapida (senza build)", "type": "shell", "command": "powershell", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceFolder}/tool/verify.ps1", "-SkipBuild" ], "problemMatcher": [] }, { "label": "Rigenera i frame radar dimostrativi", "type": "shell", "command": "python", "args": ["${workspaceFolder}/tool/generate_mock_frames.py"], "problemMatcher": [] }, { "label": "Spegni emulatore", "type": "shell", "command": "adb", "args": ["emu", "kill"], "problemMatcher": [] } ] }