| 1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- <ImplicitUsings>enable</ImplicitUsings>
- <EnableWindowsTargeting>true</EnableWindowsTargeting>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Npgsql" Version="8.0.6" />
- </ItemGroup>
- <ItemGroup>
- <None Update="connection.txt">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <Content Include="Assets\*.png">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|