63 lines
2.4 KiB
XML
63 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.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="10.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
<PackageReference Include="NPOI" Version="2.7.0" />
|
|
<PackageReference Include="Quartz" Version="3.8.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\Api\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Brizco.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.CoreServices.ReportServices.Commands" />
|
|
<Using Include="Brizco.Core.EntityServices.Abstracts" />
|
|
<Using Include="Brizco.Domain.CommandQueries.Commands" />
|
|
<Using Include="Brizco.Domain.CommandQueries.Queries" />
|
|
<Using Include="Brizco.Domain.Dtos.LargeDtos" />
|
|
<Using Include="Brizco.Domain.Dtos.PageDto" />
|
|
<Using Include="Brizco.Domain.Dtos.RequestDtos" />
|
|
<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" />
|
|
<Using Include="Mapster" />
|
|
<Using Include="MediatR" />
|
|
<Using Include="Microsoft.AspNetCore.Identity" />
|
|
<Using Include="Microsoft.EntityFrameworkCore" />
|
|
<Using Include="Microsoft.IdentityModel.Tokens" />
|
|
<Using Include="NPOI.SS.UserModel" />
|
|
<Using Include="NPOI.SS.Util" />
|
|
<Using Include="NPOI.XSSF.UserModel" />
|
|
<Using Include="System.Security.Claims" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|