Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. {
  2. "version": "0.1.0",
  3. "windows": {
  4. "command": "cmd",
  5. "args": [
  6. "/C"
  7. ],
  8. "isShellCommand": true
  9. },
  10. "linux": {
  11. "command": "sh",
  12. "args": [
  13. "-c"
  14. ],
  15. "isShellCommand": true
  16. },
  17. "osx": {
  18. "command": "sh",
  19. "args": [
  20. "-c"
  21. ],
  22. "isShellCommand": true
  23. },
  24. "tasks": [
  25. {
  26. "taskName": "build",
  27. "suppressTaskName": true,
  28. "args": [
  29. "dotnet build"
  30. ],
  31. "isBuildCommand": true,
  32. "showOutput": "always",
  33. "problemMatcher": "$msCompile"
  34. },
  35. {
  36. "taskName": "restore",
  37. "suppressTaskName": true,
  38. "args": [
  39. "dotnet restore"
  40. ]
  41. },
  42. {
  43. "taskName": "npm install",
  44. "suppressTaskName": true,
  45. "args": [
  46. "npm install"
  47. ]
  48. },
  49. {
  50. "taskName": "compile typescript",
  51. "suppressTaskName": true,
  52. "args": [
  53. "tsc -p ."
  54. ],
  55. "isBuildCommand": true
  56. }
  57. ]
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement