20 lines
834 B
XML
20 lines
834 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net6.0</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.5" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.5" />
|
|||
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
|
|||
|
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="7.0.5" />
|
|||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|