2023-02-13 22:22:24 +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>
|
2023-03-13 19:57:35 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2023-02-13 22:22:24 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
|
2023-03-13 23:04:34 +04:00
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.2" />
|
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.17" />
|
2023-02-13 22:22:24 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\LawFirmBusinessLogic\LawFirmBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\LawFirmContracts\LawFirmContracts.csproj" />
|
2023-03-13 19:57:35 +04:00
|
|
|
|
<ProjectReference Include="..\LawFirmDatabaseImplement\LawFirmDatabaseImplement.csproj" />
|
2023-02-13 22:22:24 +04:00
|
|
|
|
<ProjectReference Include="..\LawFirmDataModel\LawFirmDataModel.csproj" />
|
2023-02-27 23:53:17 +04:00
|
|
|
|
<ProjectReference Include="..\LawFirmFileImplement\LawFirmFileImplement.csproj" />
|
2023-02-13 22:22:24 +04:00
|
|
|
|
<ProjectReference Include="..\LawFirmListImplement\LawFirmListImplement.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-04-10 20:21:33 +04:00
|
|
|
|
<ItemGroup>
|
2023-04-25 00:17:59 +04:00
|
|
|
|
<None Update="App.config">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-04-10 20:21:33 +04:00
|
|
|
|
<None Update="ReportOrders.rdlc">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-02-13 22:22:24 +04:00
|
|
|
|
</Project>
|