21 lines
777 B
XML
21 lines
777 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<NoWarn>$(NoWarn);$(WarningsNotAsErrors)</NoWarn>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.8" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="7.0.9" />
|
|
<PackageReference Include="NEST" Version="7.17.5" />
|
|
<PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" />
|
|
<PackageReference Include="ThaiBahtText" Version="1.0.103" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|