2024-02-11 18:24:54 +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>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-27 19:44:44 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
2024-02-11 18:24:54 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-27 19:44:44 +04:00
|
|
|
|
<ProjectReference Include="..\AbstractLawFirmBusinessLogic\AbstractLawFirmBusinessLogic.csproj" />
|
2024-03-12 21:53:02 +04:00
|
|
|
|
<ProjectReference Include="..\AbstractLawFirmFileImpliment\AbstractLawFirmFileImplement.csproj" />
|
2024-02-27 19:44:44 +04:00
|
|
|
|
<ProjectReference Include="..\AbstractLawFirmListImplement\AbstractLawFirmListImplement.csproj" />
|
2024-02-11 18:24:54 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|