tasks.json 231 B

1234567891011121314151617
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Open Unity Project",
  6. "type": "shell",
  7. "command": "start",
  8. "args": [
  9. ".",
  10. "/B"
  11. ],
  12. "group": "build",
  13. "isBackground": true,
  14. "problemMatcher": []
  15. }
  16. ]
  17. }