2023-06-25 18:36:02 +07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-06-05 20:22:51 +07:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-08-24 12:14:01 +07:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2023-06-05 20:22:51 +07:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-05-02 12:13:14 +07:00
|
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
|
|
|
|
<NoWarn>$(NoWarn);$(WarningsNotAsErrors)</NoWarn>
|
|
|
|
|
|
|
2023-06-05 20:22:51 +07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-07-12 21:50:11 +07:00
|
|
|
|
<PackageReference Include="AWSSDK.S3" Version="3.7.107.5" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.9" />
|
2023-06-05 20:22:51 +07:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
|
2023-09-14 12:39:16 +07:00
|
|
|
|
<PackageReference Include="MimeTypeMapOfficial" Version="1.0.17" />
|
2023-06-05 20:22:51 +07:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\BMA.EHR.Domain\BMA.EHR.Domain.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|