Simulation Core
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

tasks.json 498 B

hace 1 año
12345678910111213141516171819202122232425
  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. }