Executable that will resequence ids in all tables of a postgres database built with .netcore 8.0 Cross Platform Compatible
Não pode escolher mais do que 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.

resequence_pgsql.csproj 406 B

há 2 anos
123456789101112131415
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Npgsql" Version="8.0.2" />
  10. <PackageReference Include="Renci.SshNet" Version="1.0.0" />
  11. </ItemGroup>
  12. </Project>