Executable that will resequence ids in all tables of a postgres database built with .netcore 8.0 Cross Platform Compatible
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
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. }