2023-01-31 12:54:51 +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-14 11:09:28 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
|
2023-02-28 02:01:24 +04:00
|
|
|
|
<PackageReference Include="NLog" Version="5.1.2" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.2" />
|
2023-02-14 11:09:28 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-28 02:01:24 +04:00
|
|
|
|
<ProjectReference Include="..\ConfectioneryBusinessLogic\ConfectioneryBusinessLogic.csproj" />
|
2023-02-14 11:09:28 +04:00
|
|
|
|
<ProjectReference Include="..\ConfectioneryContracts\ConfectioneryContracts.csproj" />
|
2023-02-28 02:01:24 +04:00
|
|
|
|
<ProjectReference Include="..\ConfectioneryListImplement\ConfectioneryListImplement.csproj" />
|
2023-02-14 11:09:28 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-01-31 12:54:51 +04:00
|
|
|
|
</Project>
|