1234567891011121314151617181920212223242526272829 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "GoHash Report",
- "type": "go",
- "request": "launch",
- "mode": "auto",
- "cwd": "${workspaceFolder}",
- "program": "./cmd/main.go",
- "env": {},
- "args": ["-i", "V:\\ignores.lst", "-e", "V:\\report_vids.txt", "V:\\noShare\\vids" ]
- },
- {
- "name": "GoHash Hash",
- "type": "go",
- "request": "launch",
- "mode": "debug",
- "cwd": "${workspaceFolder}",
- "program": "./cmd/main.go",
- "env": {},
- "args": ["C:\\e-platte\\temp\\R2D2" ]
- }
- ]
- }
|