Api/Brizco.Core/Brizco.Core.csproj

63 lines
2.4 KiB
XML
Raw Normal View History

2023-09-15 12:37:02 +03:30
<Project Sdk="Microsoft.NET.Sdk">
2023-09-08 12:25:21 +03:30
<PropertyGroup>
2023-11-29 13:02:59 +03:30
<TargetFramework>net8.0</TargetFramework>
2023-09-08 12:25:21 +03:30
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-09-15 12:37:02 +03:30
<ItemGroup>
<PackageReference Include="AspNetCoreRateLimit" Version="5.0.0" />
<PackageReference Include="AspNetCoreRateLimit.Redis" Version="2.0.0" />
<PackageReference Include="Autofac.Extras.Quartz" Version="10.0.0" />
2023-09-15 12:37:02 +03:30
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
<PackageReference Include="NPOI" Version="2.7.0" />
<PackageReference Include="Quartz" Version="3.8.1" />
2023-09-15 12:37:02 +03:30
</ItemGroup>
<ItemGroup>
<Folder Include="Models\Api\" />
</ItemGroup>
<ItemGroup>
2023-10-19 11:59:07 +03:30
<ProjectReference Include="..\Brizco.Repository\Brizco.Repository.csproj" />
2023-09-15 12:37:02 +03:30
</ItemGroup>
<ItemGroup>
2023-10-13 16:25:34 +03:30
<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" />
2023-10-13 16:25:34 +03:30
<Using Include="Brizco.Core.CoreServices.Abstracts" />
<Using Include="Brizco.Core.CoreServices.ReportServices.Commands" />
<Using Include="Brizco.Core.EntityServices.Abstracts" />
<Using Include="Brizco.Domain.CommandQueries.Commands" />
2024-02-27 14:20:41 +03:30
<Using Include="Brizco.Domain.CommandQueries.Queries" />
<Using Include="Brizco.Domain.Dtos.LargeDtos" />
<Using Include="Brizco.Domain.Dtos.PageDto" />
<Using Include="Brizco.Domain.Dtos.RequestDtos" />
2023-10-18 17:19:56 +03:30
<Using Include="Brizco.Domain.Dtos.ResponseDto" />
<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.Domain.Mappers" />
<Using Include="Brizco.Repository.Abstracts" />
<Using Include="Brizco.Repository.Repositories.Base.Contracts" />
2024-02-27 14:20:41 +03:30
<Using Include="Mapster" />
<Using Include="MediatR" />
<Using Include="Microsoft.AspNetCore.Identity" />
<Using Include="Microsoft.EntityFrameworkCore" />
2023-10-13 16:25:34 +03:30
<Using Include="Microsoft.IdentityModel.Tokens" />
<Using Include="NPOI.SS.UserModel" />
<Using Include="NPOI.SS.Util" />
<Using Include="NPOI.XSSF.UserModel" />
2024-02-27 14:20:41 +03:30
<Using Include="System.Security.Claims" />
</ItemGroup>
2023-09-08 12:25:21 +03:30
</Project>