2023-05-19 18:09:36 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2023-05-17 20:17:29 +04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-05-19 18:09:36 +04:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
|
2023-05-18 00:37:00 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.5">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="6.1.0" />
|
2023-05-17 20:17:29 +04:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-17 23:28:43 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CaseAccountingBusinessLogics\CaseAccountingBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CaseAccountingContracts\CaseAccountingContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CaseAccountingDataBaseImplement\CaseAccountingDataBaseImplement.csproj" />
|
2023-05-19 18:09:36 +04:00
|
|
|
|
<ProjectReference Include="..\CaseAccountingDataModels\CaseAccountingDataModels.csproj" />
|
2023-05-17 23:28:43 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-17 20:17:29 +04:00
|
|
|
|
</Project>
|