A tool to index convert files into 4bpp indexed graphics with palettes to be used with embedded development kits.

launch.json 1.3KB

12345678910111213141516171819202122232425262728
  1. {
  2. // Use IntelliSense to find out which attributes exist for C# debugging
  3. // Use hover for the description of the existing attributes
  4. // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": ".NET Core Launch (console)",
  9. "type": "coreclr",
  10. "request": "launch",
  11. "preLaunchTask": "build",
  12. // If you have changed target frameworks, make sure to update the program path.
  13. "program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/agbidx.dll",
  14. "args": ["-v", "-i", "/home/karathan/Downloads/Sprites aus der ROM/Pokemon Sprites/kanto", "-o", "/home/karathan/Downloads/Sprites aus der ROM/Pokemon Sprites/kanto/rendered"],
  15. "cwd": "${workspaceFolder}",
  16. // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
  17. "console": "internalConsole",
  18. "stopAtEntry": false,
  19. "internalConsoleOptions": "openOnSessionStart"
  20. },
  21. {
  22. "name": ".NET Core Attach",
  23. "type": "coreclr",
  24. "request": "attach",
  25. "processId": "${command:pickProcess}"
  26. }
  27. ,]
  28. }