Infrastructure.csproj 1.2 KB

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <ItemGroup>
  3. <PackageReference Include="AspNetCore.HealthChecks.Redis" />
  4. <PackageReference Include="AspNetCore.HealthChecks.SqlServer" />
  5. <PackageReference Include="MailKit" />
  6. <PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" />
  7. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
  8. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
  9. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.Design">
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. <PrivateAssets>all</PrivateAssets>
  14. </PackageReference>
  15. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
  16. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
  17. <PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" />
  18. <PackageReference Include="MimeKit" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\Application\Application.csproj" />
  22. </ItemGroup>
  23. </Project>