1234567891011121314151617 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net6.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- <ImplicitUsings>enable</ImplicitUsings>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Abp" Version="9.1.1" />
- <PackageReference Include="Npgsql" Version="8.0.2" />
- <PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
- </ItemGroup>
- </Project>
|