You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

7 years ago
  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 Web",
  8. "type": "shell",
  9. "command": "MSBuild.exe siteserver-web.sln",
  10. "group": {
  11. "kind": "build",
  12. "isDefault": true
  13. },
  14. "presentation": {
  15. "reveal": "always",
  16. "panel": "new"
  17. }
  18. },
  19. {
  20. "label": "Build Cli",
  21. "type": "shell",
  22. "command": "MSBuild.exe siteserver-cli.sln",
  23. "group": "build",
  24. "presentation": {
  25. "reveal": "always",
  26. "panel": "new"
  27. }
  28. },
  29. {
  30. "label": "Build All",
  31. "type": "shell",
  32. "command": "MSBuild.exe siteserver-all.sln",
  33. "group": "build",
  34. "presentation": {
  35. "reveal": "always",
  36. "panel": "new"
  37. }
  38. }
  39. ]
  40. }