39 lines
1.5 KiB
XML
Raw Normal View History

2024-02-06 16:08:19 +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-25 23:27:30 +04:00
<ItemGroup>
<None Remove="nlog.config" />
</ItemGroup>
<ItemGroup>
<Content Include="nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
2024-03-19 23:37:07 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2024-02-25 23:27:30 +04:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TypographyBusinessLogic\TypographyBusinessLogic.csproj" />
2024-03-20 10:53:07 +04:00
<ProjectReference Include="..\TypographyContracts\TypographyContracts.csproj" />
2024-03-19 23:37:07 +04:00
<ProjectReference Include="..\TypographyDatabaseImplement\TypographyDatabaseImplement.csproj" />
2024-03-05 20:56:09 +04:00
<ProjectReference Include="..\TypographyFileImplement\TypographyFileImplement.csproj" />
2024-02-25 23:27:30 +04:00
<ProjectReference Include="..\TypographyListImplement\TypographyListImplement.csproj" />
</ItemGroup>
2024-02-06 16:08:19 +04:00
</Project>