2024-04-29 16:27:29 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-04-30 21:09:57 +04:00
|
|
|
|
<ItemGroup>
|
2024-05-27 04:35:55 +04:00
|
|
|
|
<PackageReference Include="iTextSharp" Version="5.5.13.3" />
|
2024-04-30 21:09:57 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.18">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-05-25 23:32:30 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.11" />
|
2024-05-27 01:13:11 +04:00
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
|
2024-04-30 21:09:57 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-25 23:32:30 +04:00
|
|
|
|
<ProjectReference Include="..\DiningRoomBusinessLogic\DiningRoomBusinessLogic.csproj" />
|
2024-04-30 21:09:57 +04:00
|
|
|
|
<ProjectReference Include="..\DiningRoomContracts\DiningRoomContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DiningRoomDatabaseImplement\DiningRoomDatabaseImplement.csproj" />
|
2024-05-25 23:32:30 +04:00
|
|
|
|
<ProjectReference Include="..\DiningRoomDataModels\DiningRoomDataModels.csproj" />
|
2024-04-30 21:09:57 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-04-29 16:27:29 +04:00
|
|
|
|
</Project>
|