launch.json 887 B

123456789101112131415161718192021222324252627
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "GoHash Report",
  9. "type": "go",
  10. "request": "launch",
  11. "mode": "auto",
  12. "program": "${fileDirname}",
  13. "env": {},
  14. "args": ["-i", "G:\\ignores.lst", "-e", "G:\\report_vids.txt", "G:\\noShare\\vids" ]
  15. },
  16. {
  17. "name": "GoHash Hash",
  18. "type": "go",
  19. "request": "launch",
  20. "mode": "debug",
  21. "cwd": "${workspaceFolder}",
  22. "program": "./cmd/main.go",
  23. "env": {},
  24. "args": ["C:\\e-platte\\temp\\R2D2" ]
  25. }
  26. ]
  27. }