tasks.json 753 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build",
  6. "command": "dotnet",
  7. "type": "process",
  8. "args": [
  9. "build",
  10. "${workspaceFolder}/Jellyfin.Server/Jellyfin.Server.csproj"
  11. ],
  12. "problemMatcher": "$msCompile"
  13. },
  14. {
  15. "label": "api tests",
  16. "command": "dotnet",
  17. "type": "process",
  18. "args": [
  19. "test",
  20. "${workspaceFolder}/tests/Jellyfin.Api.Tests/Jellyfin.Api.Tests.csproj"
  21. ],
  22. "problemMatcher": "$msCompile"
  23. }
  24. ],
  25. "options": {
  26. "env": {
  27. "DOTNET_CLI_TELEMETRY_OPTOUT": "1"
  28. }
  29. }
  30. }