Advertisement
Guest User

tasks.json

a guest
Jul 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. // See https://go.microsoft.com/fwlink/?LinkId=733558
  2. { // for the documentation about the tasks.json format
  3. "version": "0.1.0",
  4. "command": "msbuild",
  5. "args": [
  6. // Ask msbuild to generate full paths for file names.
  7. "/property:GenerateFullPaths=true"
  8. ],
  9. "taskSelector": "/t:",
  10. "showOutput": "silent",
  11. "tasks": [
  12. {
  13. "taskName": "build",
  14. // Show the output window only if unrecognized errors occur.
  15. "showOutput": "silent",
  16. // Use the standard MS compiler pattern to detect errors, warnings and infos
  17. "problemMatcher": "$msCompile"
  18. }
  19. ]
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement