2023-02-03 23:25:31 +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>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-19 22:48:53 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2023-02-03 23:25:31 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.1" />
|
2023-03-01 16:42:58 +04:00
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.17" />
|
2023-02-03 23:25:31 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\ConfectionaryBusinessLogic\ConfectioneryBusinessLogic.csproj" />
|
2023-02-15 04:03:18 +04:00
|
|
|
|
<ProjectReference Include="..\ConfectionaryFileImplement\ConfectioneryFileImplement.csproj" />
|
2023-02-03 23:25:31 +04:00
|
|
|
|
<ProjectReference Include="..\ConfectionaryListImplement\ConfectioneryListImplement.csproj" />
|
|
|
|
|
<ProjectReference Include="..\ConfectioneryContracts\ConfectioneryContracts.csproj" />
|
2023-02-19 22:48:53 +04:00
|
|
|
|
<ProjectReference Include="..\ConfectioneryDatabaseImplement\ConfectioneryDatabaseImplement.csproj" />
|
2023-02-03 23:25:31 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-03-01 16:42:58 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="ReportOrders.rdlc">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-02-03 23:25:31 +04:00
|
|
|
|
</Project>
|