CourseWork_CarCenter/CarCenter/CarCenterBusinessLogic/CarCenterBusinessLogic.csproj

19 lines
531 B
XML
Raw Normal View History

2024-04-26 22:05:37 +04:00
<Project Sdk="Microsoft.NET.Sdk">
2024-04-26 22:04:15 +04:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
</ItemGroup>
2024-04-26 22:05:37 +04:00
<ItemGroup>
<ProjectReference Include="..\CarCenterContracts\CarCenterContracts.csproj" />
2024-04-28 21:13:12 +04:00
<ProjectReference Include="..\CarCenterDataBaseImplement\CarCenterDataBaseImplement.csproj" />
2024-04-26 22:05:37 +04:00
</ItemGroup>
2024-04-26 22:04:15 +04:00
</Project>