Simulation Core
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

25 Zeilen
498 B

  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "make",
  6. "type": "shell",
  7. "command": "make",
  8. "options": {
  9. "cwd": "${workspaceRoot}"
  10. }
  11. },
  12. {
  13. "label": "make debug",
  14. "type": "shell",
  15. "command": "make",
  16. "args": [
  17. "debug"
  18. ],
  19. "options": {
  20. "cwd": "${workspaceRoot}"
  21. }
  22. },
  23. ]
  24. }