2024-04-29 00:38:02 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-05-27 22:25:54 +04:00
|
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.11" />
|
2024-04-29 00:38:02 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-25 23:29:08 +04:00
|
|
|
<ProjectReference Include="..\HospitalBusinessLogics\HospitalBusinessLogics.csproj" />
|
2024-04-29 00:38:02 +04:00
|
|
|
<ProjectReference Include="..\HospitalContracts\HospitalContracts.csproj" />
|
2024-05-25 23:29:08 +04:00
|
|
|
<ProjectReference Include="..\HospitalDatabaseImplement\HospitalDatabaseImplement.csproj" />
|
2024-04-29 00:38:02 +04:00
|
|
|
<ProjectReference Include="..\HospitalDataModels\HospitalDataModels.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|