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" />
|
2024-04-25 02:33:17 +03:30
|
|
|
|
<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" />
|
2024-07-06 20:51:44 +03:30
|
|
|
|
<PackageReference Include="NPOI" Version="2.7.1" />
|
|
|
|
|
|
<PackageReference Include="Quartz" Version="3.10.0" />
|
2023-09-15 12:37:02 +03:30
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-08-11 19:20:09 +03:30
|
|
|
|
<Folder Include="EntityServices\Handlers\Complexes\" />
|
2023-09-15 12:37:02 +03:30
|
|
|
|
<Folder Include="Models\Api\" />
|
2024-07-08 17:45:17 +03:30
|
|
|
|
<Folder Include="QuartzServices\Commands\" />
|
2023-09-15 12:37:02 +03:30
|
|
|
|
</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>
|
|
|
|
|
|
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<ItemGroup>
|
2023-10-13 16:25:34 +03:30
|
|
|
|
<Using Include="Brizco.Common.Extensions" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<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" />
|
2023-10-13 16:25:34 +03:30
|
|
|
|
<Using Include="Brizco.Core.CoreServices.Abstracts" />
|
2024-02-21 02:07:41 +03:30
|
|
|
|
<Using Include="Brizco.Core.CoreServices.ReportServices.Commands" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<Using Include="Brizco.Core.EntityServices.Abstracts" />
|
2024-08-11 19:20:09 +03:30
|
|
|
|
<Using Include="Brizco.Core.EntityServices.CommandQueries" />
|
2024-05-29 19:17:41 +03:30
|
|
|
|
<Using Include="Brizco.Core.MartenServices.Abstracts" />
|
2024-07-08 17:45:17 +03:30
|
|
|
|
<Using Include="Brizco.Core.QuartzServices.Commands" />
|
2024-05-29 19:17:41 +03:30
|
|
|
|
<Using Include="Brizco.Domain" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<Using Include="Brizco.Domain.CommandQueries.Commands" />
|
2024-02-27 14:20:41 +03:30
|
|
|
|
<Using Include="Brizco.Domain.CommandQueries.Queries" />
|
2024-05-27 00:35:53 +03:30
|
|
|
|
<Using Include="Brizco.Domain.Dtos.LargeDtos" />
|
2023-12-09 09:54:34 +03:30
|
|
|
|
<Using Include="Brizco.Domain.Dtos.PageDto" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<Using Include="Brizco.Domain.Dtos.RequestDtos" />
|
2023-10-18 17:19:56 +03:30
|
|
|
|
<Using Include="Brizco.Domain.Dtos.ResponseDto" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<Using Include="Brizco.Domain.Dtos.SmallDtos" />
|
2024-07-08 17:45:17 +03:30
|
|
|
|
<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" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<Using Include="Brizco.Domain.Enums" />
|
2024-02-21 02:07:41 +03:30
|
|
|
|
<Using Include="Brizco.Domain.Mappers" />
|
2024-05-28 18:50:02 +03:30
|
|
|
|
<Using Include="Brizco.Domain.MartenEntities.Brews" />
|
2024-05-29 19:17:41 +03:30
|
|
|
|
<Using Include="Brizco.Domain.MartenEntities.Notifications" />
|
2024-05-28 18:50:02 +03:30
|
|
|
|
<Using Include="Brizco.Domain.Models.Settings" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<Using Include="Brizco.Repository.Abstracts" />
|
|
|
|
|
|
<Using Include="Brizco.Repository.Repositories.Base.Contracts" />
|
2024-05-28 18:50:02 +03:30
|
|
|
|
<Using Include="Brizco.Repository.Repositories.Marten" />
|
2024-02-27 14:20:41 +03:30
|
|
|
|
<Using Include="Mapster" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
<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" />
|
2024-07-31 10:18:38 +03:30
|
|
|
|
<Using Include="Newtonsoft.Json" />
|
2024-02-21 02:07:41 +03:30
|
|
|
|
<Using Include="NPOI.SS.UserModel" />
|
|
|
|
|
|
<Using Include="NPOI.SS.Util" />
|
|
|
|
|
|
<Using Include="NPOI.XSSF.UserModel" />
|
2024-07-31 10:18:38 +03:30
|
|
|
|
<Using Include="System.Reflection" />
|
2024-02-27 14:20:41 +03:30
|
|
|
|
<Using Include="System.Security.Claims" />
|
2024-05-28 18:50:02 +03:30
|
|
|
|
<Using Include="System.Text.Json" />
|
2023-09-20 11:54:12 +03:30
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-09-08 12:25:21 +03:30
|
|
|
|
</Project>
|