78 lines
3.2 KiB
XML
78 lines
3.2 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.1" />
|
|
<PackageReference Include="Quartz" Version="3.10.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="EntityServices\Handlers\Complexes\" />
|
|
<Folder Include="Models\Api\" />
|
|
<Folder Include="QuartzServices\Commands\" />
|
|
</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.CoreServices.Abstracts" />
|
|
<Using Include="Brizco.Core.CoreServices.ReportServices.Commands" />
|
|
<Using Include="Brizco.Core.EntityServices.Abstracts" />
|
|
<Using Include="Brizco.Core.EntityServices.CommandQueries" />
|
|
<Using Include="Brizco.Core.MartenServices.Abstracts" />
|
|
<Using Include="Brizco.Core.QuartzServices.Commands" />
|
|
<Using Include="Brizco.Domain" />
|
|
<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.Complexes" />
|
|
<Using Include="Brizco.Domain.Entities.Routines" />
|
|
<Using Include="Brizco.Domain.Entities.ShiftPlans" />
|
|
<Using Include="Brizco.Domain.Entities.Shifts" />
|
|
<Using Include="Brizco.Domain.Entities.Users" />
|
|
<Using Include="Brizco.Domain.Enums" />
|
|
<Using Include="Brizco.Domain.Mappers" />
|
|
<Using Include="Brizco.Domain.MartenEntities.Brews" />
|
|
<Using Include="Brizco.Domain.MartenEntities.Notifications" />
|
|
<Using Include="Brizco.Domain.Models.Settings" />
|
|
<Using Include="Brizco.Repository.Abstracts" />
|
|
<Using Include="Brizco.Repository.Repositories.Base.Contracts" />
|
|
<Using Include="Brizco.Repository.Repositories.Marten" />
|
|
<Using Include="Mapster" />
|
|
<Using Include="MediatR" />
|
|
<Using Include="Microsoft.AspNetCore.Identity" />
|
|
<Using Include="Microsoft.EntityFrameworkCore" />
|
|
<Using Include="Microsoft.IdentityModel.Tokens" />
|
|
<Using Include="Newtonsoft.Json" />
|
|
<Using Include="NPOI.SS.UserModel" />
|
|
<Using Include="NPOI.SS.Util" />
|
|
<Using Include="NPOI.XSSF.UserModel" />
|
|
<Using Include="System.Reflection" />
|
|
<Using Include="System.Security.Claims" />
|
|
<Using Include="System.Text.Json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|