Infrastructure.csproj 1.4 KB

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