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-03-25 20:21:59 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.28">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
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-04-07 21:23:24 +04:00
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
|
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-26 00:07:11 +04:00
|
|
|
|
<ProjectReference Include="..\AbstractLawFirmDatabaseImplement\AbstractLawFirmDataBaseImplement.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>
|
|
|
|
|
|
2024-04-09 23:28:01 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="ReportOrders.rdlc">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2024-02-11 18:24:54 +04:00
|
|
|
|
</Project>
|