Infrastructure.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  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. <Folder Include="Persistence\Migrations\" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <PackageReference Include="AspNetCore.HealthChecks.Redis" Version="9.0.0" />
  12. <PackageReference Include="AspNetCore.HealthChecks.SqlServer" Version="9.0.0" />
  13. <PackageReference Include="MailKit" Version="4.14.1" />
  14. <PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="10.0.2" />
  15. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.2" />
  16. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.2" />
  17. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.2" />
  18. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.2">
  19. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  20. <PrivateAssets>all</PrivateAssets>
  21. </PackageReference>
  22. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.2" />
  23. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.2" />
  24. <PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="10.0.2" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\Application\Application.csproj" />
  28. </ItemGroup>
  29. </Project>