Infrastructure.csproj 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net10.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
  9. <PackageReference Include="AspNetCore.HealthChecks.Redis" Version="9.0.0" />
  10. <PackageReference Include="AspNetCore.HealthChecks.SqlServer" Version="9.0.0" />
  11. <PackageReference Include="BouncyCastle.Cryptography" Version="2.6.2" />
  12. <PackageReference Include="MailKit" Version="4.16.0" />
  13. <PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="10.0.7" />
  14. <PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="10.0.7" />
  15. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.7" />
  16. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.7" />
  17. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.7" />
  18. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.7" />
  19. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.7">
  20. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  21. <PrivateAssets>all</PrivateAssets>
  22. </PackageReference>
  23. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.7" />
  24. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.7" />
  25. <PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="10.0.7" />
  26. <PackageReference Include="MimeKit" Version="4.16.0" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\Application\Application.csproj" />
  30. </ItemGroup>
  31. </Project>