PIbd-23_Bogdanov_D.S._Compu.../ComputersShop/ComputersShop.csproj

23 lines
888 B
XML
Raw Normal View History

2023-01-29 16:13:03 +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-01-29 18:03:10 +04:00
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
2023-02-12 15:03:53 +04:00
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AbstractComputerDataModel\ComputerShopDataModels.csproj" />
<ProjectReference Include="..\ComputerShopBusinessLogic\ComputerShopBusinessLogic.csproj" />
<ProjectReference Include="..\ComputerShopContracts\ComputerShopContracts.csproj" />
<ProjectReference Include="..\ComputerShopListImplement\ComputerShopListImplement.csproj" />
2023-01-29 18:03:10 +04:00
</ItemGroup>
2023-01-29 16:13:03 +04:00
</Project>