Executable that will resequence ids in all tables of a postgres database built with .netcore 8.0 Cross Platform Compatible
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

27 linhas
742 B

  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": ".NET Core Launch (console)",
  9. "type": "coreclr",
  10. "request": "launch",
  11. "preLaunchTask": "build",
  12. "program": "${workspaceFolder}/bin/Debug/net8.0/resequence_pgsql.dll",
  13. "args": [
  14. "-ip:192.168.0.108",
  15. "-u:mcarman",
  16. "-pwd:@ng31F@rm0823262",
  17. "-lip:127.0.0.1",
  18. "-p:5432",
  19. "-db:accessdb_v3"
  20. ],
  21. "cwd": "${workspaceFolder}",
  22. "stopAtEntry": false,
  23. "console": "internalConsole"
  24. }
  25. ]
  26. }