AutorentWinForms.csproj 835 B

123456789101112131415161718192021222324
  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. <Compile Remove="WindowsFormsApp3_ready\**\*.cs" />
  12. <Compile Remove="installer\**\*.cs" />
  13. <None Remove="WindowsFormsApp3_ready\**\*" />
  14. <None Remove="installer\**\*" />
  15. <Content Remove="WindowsFormsApp3_ready\**\*" />
  16. <Content Remove="installer\**\*" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Content Include="dbsettings.json">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </Content>
  22. <PackageReference Include="Npgsql" Version="10.0.3" />
  23. </ItemGroup>
  24. </Project>