tasks.json 374 B

123456789101112131415161718192021
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Run Recipe App",
  6. "type": "shell",
  7. "command": "dotnet run --project Recepie.sln",
  8. "isBackground": true,
  9. "problemMatcher": [],
  10. "group": "build"
  11. },
  12. {
  13. "label": "Run Recipe App",
  14. "type": "shell",
  15. "command": "dotnet run",
  16. "isBackground": true,
  17. "problemMatcher": [],
  18. "group": "build"
  19. }
  20. ]
  21. }