2024-05-16 23:03:03 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-05-17 00:00:36 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.11" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CarRepairShopBusinessLogic\CarRepairShopBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CarRepairShopContracts\CarRepairShopContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CarRepairShopListImplement\CarRepairShopListImplement.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-16 23:03:03 +04:00
|
|
|
|
</Project>
|