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

24 lines
961 B
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-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-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-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>