2023-03-13 12:29:56 +07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<UserSecretsId>d45c95ce-6b9d-4aa7-aaaf-62fe8b792934</UserSecretsId>
|
|
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2023-03-17 14:24:43 +07:00
|
|
|
<RootNamespace>BMA.EHR.Recruit.Service</RootNamespace>
|
2023-03-13 12:29:56 +07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<NoWarn>1701;1702;1591;0436;</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<NoWarn>1701;1702;1591;0436;</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-03-24 14:24:35 +07:00
|
|
|
<PackageReference Include="AWSSDK.S3" Version="3.7.103.35" />
|
2024-05-27 09:09:39 +07:00
|
|
|
<!-- <PackageReference Include="BMA.EHR.Core" Version="1.0.0" />
|
|
|
|
|
<PackageReference Include="BMA.EHR.Extensions" Version="1.0.4" /> -->
|
2023-03-13 12:29:56 +07:00
|
|
|
<PackageReference Include="CoreAdmin" Version="2.7.0" />
|
|
|
|
|
<PackageReference Include="EPPlus" Version="6.1.3" />
|
2026-03-24 13:42:59 +07:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.20" />
|
|
|
|
|
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.1.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.IdentityModel.Protocols" Version="7.1.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.1.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.1.2" />
|
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.1.2" />
|
2023-03-13 12:29:56 +07:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.3">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
|
|
|
|
|
<PackageReference Include="MongoDB.Driver" Version="2.19.0" />
|
|
|
|
|
<PackageReference Include="MongoDB.Driver.GridFS" Version="2.19.0" />
|
2025-03-31 13:10:57 +07:00
|
|
|
<PackageReference Include="NEST" Version="7.17.5" />
|
2023-03-13 12:29:56 +07:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql.Design" Version="1.1.2" />
|
|
|
|
|
<PackageReference Include="runtime.osx.10.10-x64.CoreCompat.System.Drawing" Version="6.0.5.128" />
|
|
|
|
|
<PackageReference Include="Sentry.AspNetCore" Version="3.29.1" />
|
|
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="6.1.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Enrichers.Environment" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Exceptions" Version="8.4.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Debug" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Elasticsearch" Version="9.0.0" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
|
|
|
|
|
<PackageReference Include="WatchDog.NET" Version="1.4.6" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Controllers\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-04-25 13:13:27 +07:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Templates\ExamList.xlsx">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Templates\PassAExamList.xlsx">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-04-25 21:00:31 +07:00
|
|
|
<None Update="Templates\PassExamList.xlsx">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-04-25 13:13:27 +07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-03-13 12:29:56 +07:00
|
|
|
</Project>
|