2024-05-26 13:45:07 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-04-30 16:53:50 +04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-05-01 00:29:07 +04:00
|
|
|
|
<ItemGroup>
|
2024-05-26 13:45:07 +04:00
|
|
|
|
<PackageReference Include="log4net.Extensions.AspNetCore" Version="1.0.0" />
|
2024-05-01 00:29:07 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.16">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-05-26 13:45:07 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-05-01 00:29:07 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-04-30 19:59:10 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PolyclinicBusinessLogic\PolyclinicBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PolyclinicContracts\PolyclinicContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PolyclinicDatabaseImplement\PolyclinicDatabaseImplement.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PolyclinicDataModels\PolyclinicDataModels.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-26 13:45:07 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Update="log4net.config">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-04-30 16:53:50 +04:00
|
|
|
|
</Project>
|