PIbd-22_Bondarenko_M.S._Com.../ComputersShop/ComputersShopView/ComputersShopView.csproj

31 lines
1.4 KiB
XML
Raw Normal View History

2023-01-31 13:00:12 +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>
2023-02-12 18:35:14 +04:00
<ItemGroup>
2023-02-28 00:11:00 +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-13 20:34:00 +04:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
2023-02-12 18:35:14 +04:00
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
2023-02-13 20:34:00 +04:00
<PackageReference Include="NLog" Version="5.1.1" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.1" />
2023-03-13 22:28:53 +04:00
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.17" />
2023-03-14 10:57:29 +04:00
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" />
2023-02-12 18:35:14 +04:00
</ItemGroup>
<ItemGroup>
2023-02-13 20:34:00 +04:00
<ProjectReference Include="..\ComputersShopBusinessLogic\ComputersShopBusinessLogic.csproj" />
2023-02-12 18:35:14 +04:00
<ProjectReference Include="..\ComputersShopContracts\ComputersShopContracts.csproj" />
2023-02-28 00:11:00 +04:00
<ProjectReference Include="..\ComputersShopDataBaseImplement\ComputersShopDataBaseImplement.csproj" />
2023-02-27 02:55:55 +04:00
<ProjectReference Include="..\ComputersShopFileImplement\ComputersShopFileImplement.csproj" />
2023-02-12 18:35:14 +04:00
</ItemGroup>
2023-01-31 13:00:12 +04:00
</Project>