tasks.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "Build JsonKit",
  8. "command": "dotnet",
  9. "type": "shell",
  10. "args": [
  11. "build",
  12. "/consoleloggerparameters:NoSummary",
  13. "./Topten.JsonKit/Topten.JsonKit.csproj"
  14. ],
  15. "group": "build",
  16. "presentation": {
  17. "reveal": "always",
  18. "clear": true
  19. },
  20. "problemMatcher": "$msCompile"
  21. },
  22. {
  23. "label": "Build JsonKit.Lite",
  24. "command": "dotnet",
  25. "type": "shell",
  26. "args": [
  27. "build",
  28. "/consoleloggerparameters:NoSummary",
  29. "./Topten.JsonKit/Topten.JsonKit.Lite.csproj"
  30. ],
  31. "group": "build",
  32. "presentation": {
  33. "reveal": "always",
  34. "clear": true
  35. },
  36. "problemMatcher": "$msCompile"
  37. },
  38. {
  39. "label": "Build Tests",
  40. "command": "dotnet",
  41. "type": "shell",
  42. "args": [
  43. "build",
  44. "/consoleloggerparameters:NoSummary",
  45. "./Topten.JsonKit.Test/Topten.JsonKit.Test.csproj"
  46. ],
  47. "group": "build",
  48. "presentation": {
  49. "reveal": "always",
  50. "clear": true
  51. },
  52. "problemMatcher": "$msCompile"
  53. }
  54. ]
  55. }