2024-04-28 01:40:12 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.17">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2024-04-29 11:36:49 +04:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="8.0.0" />
|
2024-04-28 01:40:12 +04:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\LawFirmBusinessLogic\LawFirmBusinessLogic.csproj" />
|
|
|
|
<ProjectReference Include="..\LawFirmContracts\LawFirmContracts.csproj" />
|
|
|
|
<ProjectReference Include="..\LawFirmDatabaseImplement\LawFirmDatabaseImplement.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|