30 lines
1.5 KiB
XML
30 lines
1.5 KiB
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="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.21" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.9" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.9">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.9" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.9" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.9">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="7.0.10" />
|
|||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|