Guest User

Untitled

a guest
Jan 22nd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. {
  2. "version": "2.0.0",
  3. "command": "cmd",
  4. "args": ["/c"],
  5. "tasks": [
  6. {
  7. "label": "The task",
  8. "command": "my_batch_file.bat",
  9. "type": "shell",
  10. "args": [
  11. "${workspaceFolder}",
  12. "${input:chooseDirectory}"
  13. ],
  14. "problemMatcher": []
  15. }
  16. ],
  17. "inputs": [
  18. {
  19. "id": "chooseDirectory",
  20. "description": "Select the Directory",
  21. "type": "pickString",
  22. "options": ["option1", "${fileDirname}"],
  23. "default": "option1"
  24. }
  25. ]
  26. }
  27.  
  28. > Executing task: my_batch_file.bat C:MyWorkspaceDirectory ${fileDirname} <
Add Comment
Please, Sign In to add comment