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.Extensions.Logging" Version="5.3.8" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-26 14:27:55 +04:00
|
|
|
|
<ProjectReference Include="..\TypographyBusinessLogic\TypographyBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\TypographyContracts\TypographyContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\TypographyDataModels\TypographyDataModels.csproj" />
|
|
|
|
|
<ProjectReference Include="..\TypographyListImplement\TypographyListImplement.csproj" />
|
2024-02-12 12:46:44 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-13 11:35:30 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="nlog.config">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-12 12:12:37 +04:00
|
|
|
|
</Project>
|