Advertisement
Guest User

Untitled

a guest
May 28th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. {
  2. "version": "0.1.0",
  3. "isShellCommand": true,
  4. "showOutput": "always",
  5. "command": "go",
  6. "echoCommand": true ,
  7. "tasks": [
  8. {
  9. "taskName": "build",
  10. "args": [
  11. "-x",
  12. "-o",
  13. "${workspaceRoot}/gom"
  14. ],
  15. "isBuildCommand": true
  16. },
  17. {
  18. "taskName": "fmt",
  19. "args": [
  20. "${file}"
  21. ]
  22. },
  23. {
  24. "taskName": "test",
  25. "isTestCommand": true,
  26. "args": [
  27. "./..."
  28. ]
  29. }
  30. ]
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement