25 lines
963 B
XML
Raw Normal View History

2024-02-12 12:12:37 +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>
2024-02-12 12:46:44 +04:00
<ItemGroup>
<PackageReference Include="NLog" Version="5.2.8" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
<PackageReference Include="NLog.Schema" Version="5.2.8" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SnackBarBusinessLogic\SnackBarBusinessLogic.csproj" />
<ProjectReference Include="..\SnackBarContracts\SnackBarContracts.csproj" />
<ProjectReference Include="..\SnackBarDataModels\SnackBarDataModels.csproj" />
<ProjectReference Include="..\SnackBarListImplement\SnackBarListImplement.csproj" />
</ItemGroup>
2024-02-12 12:12:37 +04:00
</Project>