| 1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <ItemGroup>
- <PackageReference Include="AspNetCore.HealthChecks.Redis" />
- <PackageReference Include="AspNetCore.HealthChecks.SqlServer" />
- <PackageReference Include="MailKit" />
- <PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" />
- <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
- <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
- <PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
- <PackageReference Include="Microsoft.EntityFrameworkCore" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design">
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- <PrivateAssets>all</PrivateAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
- <PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" />
- <PackageReference Include="MimeKit" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Application\Application.csproj" />
- </ItemGroup>
- </Project>
|