2024-02-10 22:23: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 01:33:41 +04:00
|
|
|
|
<ItemGroup>
|
2024-03-10 17:15:08 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.16">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-02-12 01:33:41 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
2024-03-24 19:08:21 +04:00
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.17" />
|
2024-02-12 01:33:41 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\AbstractLawFirmBusinessLogic\AbstractLawFirmBusinessLogic.csproj" />
|
2024-03-10 17:15:08 +04:00
|
|
|
|
<ProjectReference Include="..\AbstractLawFirmDatabaseImplement\AbstractLawFirmDatabaseImplement.csproj" />
|
2024-02-23 22:40:07 +04:00
|
|
|
|
<ProjectReference Include="..\AbstractLawFirmFileImplement\AbstractLawFirmFileImplement.csproj" />
|
2024-02-12 01:33:41 +04:00
|
|
|
|
<ProjectReference Include="..\AbstractLawFirmListImplement\AbstractLawFirmListImplement.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-03-24 19:15:02 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="ReportOrders.rdlc">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-10 22:23:37 +04:00
|
|
|
|
</Project>
|