Executable that will resequence ids in all tables of a postgres database built with .netcore 8.0 Cross Platform Compatible
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

16 righe
406 B

  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>