AutorentWinForms.csproj 527 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net9.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <Nullable>enable</Nullable>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <ApplicationIcon />
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <Content Include="dbsettings.json">
  12. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  13. </Content>
  14. <PackageReference Include="Npgsql" Version="10.0.3" />
  15. </ItemGroup>
  16. </Project>