25 lines
963 B
XML
25 lines
963 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<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>
|
|
|
|
</Project> |