2022-05-09 14:41:15 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-05-10 16:49:42 -07:00
|
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
|
2022-05-11 13:18:34 -07:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.5" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.5" />
|
2022-05-19 13:50:10 -07:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.5" />
|
2022-05-09 14:41:15 -07:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.4">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
2022-05-09 17:07:59 -07:00
|
|
|
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
|
2022-05-09 14:41:15 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|