51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AspNetCoreRateLimit" Version="5.0.0" />
|
|
<PackageReference Include="AspNetCoreRateLimit.Redis" Version="2.0.0" />
|
|
<PackageReference Include="Autofac.Extras.Quartz" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
<PackageReference Include="Quartz" Version="3.7.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\Api\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Berizco.Repository\Brizco.Repository.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Brizco.Common.Extensions" />
|
|
<Using Include="Brizco.Common.Models" />
|
|
<Using Include="Brizco.Common.Models.Api" />
|
|
<Using Include="Brizco.Common.Models.Claims" />
|
|
<Using Include="Brizco.Common.Models.Exception" />
|
|
<Using Include="Brizco.Core.Abstracts" />
|
|
<Using Include="Brizco.Core.BaseServices.Abstracts" />
|
|
<Using Include="Brizco.Core.CoreServices.Abstracts" />
|
|
<Using Include="Brizco.Core.EntityServices.Abstracts" />
|
|
<Using Include="Brizco.Domain.CommandQueries.Commands" />
|
|
<Using Include="Brizco.Domain.Dtos.RequestDtos" />
|
|
<Using Include="Brizco.Domain.Dtos.SmallDtos" />
|
|
<Using Include="Brizco.Domain.Entities.Complex" />
|
|
<Using Include="Brizco.Domain.Entities.User" />
|
|
<Using Include="Brizco.Domain.Enums" />
|
|
<Using Include="Brizco.Repository.Abstracts" />
|
|
<Using Include="Brizco.Repository.Repositories.Base.Contracts" />
|
|
<Using Include="MediatR" />
|
|
<Using Include="Microsoft.AspNetCore.Identity" />
|
|
<Using Include="Microsoft.EntityFrameworkCore" />
|
|
<Using Include="Microsoft.IdentityModel.Tokens" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|