TravelAgencyWinForms.csproj 695 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <EnableWindowsTargeting>true</EnableWindowsTargeting>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Npgsql" Version="8.0.6" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <None Update="connection.txt">
  15. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  16. </None>
  17. <Content Include="Assets\*.png">
  18. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  19. </Content>
  20. </ItemGroup>
  21. </Project>