74 lines
3.3 KiB
XML
74 lines
3.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MediatR" Version="12.2.0" />
|
|
<PackageReference Include="FluentValidation" Version="11.9.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Pluralize.NET" Version="1.0.2" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.2" />
|
|
<PackageReference Include="StackExchange.Redis" Version="2.7.20" />
|
|
<PackageReference Include="StackExchange.Redis.Extensions.Core" Version="10.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NetinaCMS.Domain\NetinaCMS.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Using Include="FluentValidation" />
|
|
<Using Include="NetinaCMS.Common.Extensions" />
|
|
<Using Include="NetinaCMS.Common.Models" />
|
|
<Using Include="NetinaCMS.Common.Models.Api" />
|
|
<Using Include="NetinaCMS.Common.Models.Entity" />
|
|
<Using Include="NetinaCMS.Common.Models.Exception" />
|
|
<Using Include="NetinaCMS.Domain.CommandQueries.Commands" />
|
|
<Using Include="NetinaCMS.Domain.CommandQueries.Queries" />
|
|
<Using Include="NetinaCMS.Domain.Dtos.LargDto" />
|
|
<Using Include="NetinaCMS.Domain.Dtos.ResponseDtos" />
|
|
<Using Include="NetinaCMS.Domain.Dtos.SmallDto" />
|
|
<Using Include="NetinaCMS.Domain.Entities.Blogs" />
|
|
<Using Include="NetinaCMS.Domain.Entities.Users" />
|
|
<Using Include="NetinaCMS.Domain.Mappers" />
|
|
<Using Include="NetinaCMS.Domain.Models.Claims" />
|
|
<Using Include="NetinaCMS.Domain.Models.Settings" />
|
|
<Using Include="NetinaCMS.Repository.Abstracts" />
|
|
<Using Include="NetinaCMS.Repository.Models" />
|
|
<Using Include="NetinaCMS.Repository.Repositories.Base.Contracts" />
|
|
<Using Include="NetinaCMS.Repository.Services.Abstracts" />
|
|
<Using Include="Mapster" />
|
|
<Using Include="MediatR" />
|
|
<Using Include="Microsoft.AspNetCore.Builder" />
|
|
<Using Include="Microsoft.AspNetCore.Identity" />
|
|
<Using Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
<Using Include="Microsoft.EntityFrameworkCore" />
|
|
<Using Include="Microsoft.EntityFrameworkCore.ChangeTracking" />
|
|
<Using Include="Microsoft.EntityFrameworkCore.Infrastructure" />
|
|
<Using Include="Microsoft.EntityFrameworkCore.Storage" />
|
|
<Using Include="Microsoft.Extensions.DependencyInjection" />
|
|
<Using Include="Microsoft.Extensions.Logging" />
|
|
<Using Include="Microsoft.Extensions.Options" />
|
|
<Using Include="Pluralize.NET" />
|
|
<Using Include="System.Diagnostics" />
|
|
<Using Include="System.Reflection" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|