28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Library14Petrushin" Version="1.0.1" />
|
|
<PackageReference Include="Library15Gerimovich" Version="1.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.10" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Businesslogic\BusinessLogics.csproj" />
|
|
<ProjectReference Include="..\Contracts\Contracts.csproj" />
|
|
<ProjectReference Include="..\DatabaseImplement\DatabaseImplement.csproj" />
|
|
<ProjectReference Include="..\WinFormsLibrary1\WinFormsLibrary1.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |