launch.json 930 B

1234567891011121314151617181920212223242526272829
  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. "cwd": "${workspaceFolder}",
  13. "program": "./cmd/main.go",
  14. "env": {},
  15. "args": ["-i", "V:\\ignores.lst", "-e", "V:\\report_vids.txt", "V:\\noShare\\vids" ]
  16. },
  17. {
  18. "name": "GoHash Hash",
  19. "type": "go",
  20. "request": "launch",
  21. "mode": "debug",
  22. "cwd": "${workspaceFolder}",
  23. "program": "./cmd/main.go",
  24. "env": {},
  25. "args": ["C:\\e-platte\\temp\\R2D2" ]
  26. }
  27. ]
  28. }