64 lines
2.4 KiB
XML
64 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="9.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
<PackageReference Include="Quartz" Version="3.8.0" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NetinaShop.Repository\NetinaShop.Repository.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Abstracts\" />
|
|
<Folder Include="BaseServices\Abstracts\" />
|
|
<Folder Include="CoreServices\Abstracts\" />
|
|
<Folder Include="Models\Api\" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Using Include="Mapster" />
|
|
<Using Include="Microsoft.AspNetCore.Identity" />
|
|
<Using Include="Microsoft.AspNetCore.Mvc" />
|
|
<Using Include="Microsoft.EntityFrameworkCore" />
|
|
<Using Include="Microsoft.Extensions.Options" />
|
|
<Using Include="Microsoft.IdentityModel.Tokens" />
|
|
<Using Include="NetinaShop.Common.Extensions" />
|
|
<Using Include="NetinaShop.Common.Models" />
|
|
<Using Include="NetinaShop.Common.Models.Api" />
|
|
<Using Include="NetinaShop.Common.Models.Exception" />
|
|
<Using Include="NetinaShop.Core.Abstracts" />
|
|
<Using Include="NetinaShop.Core.BaseServices.Abstracts" />
|
|
<Using Include="NetinaShop.Core.CoreServices.Abstracts" />
|
|
<Using Include="NetinaShop.Core.EntityServices.Abstracts" />
|
|
<Using Include="NetinaShop.Domain.Dtos.RequestDtos" />
|
|
<Using Include="NetinaShop.Domain.Dtos.ResponseDtos" />
|
|
<Using Include="NetinaShop.Domain.Dtos.SmallDtos" />
|
|
<Using Include="NetinaShop.Domain.Entities.Users" />
|
|
<Using Include="NetinaShop.Domain.Enums" />
|
|
<Using Include="NetinaShop.Domain.Mappers" />
|
|
<Using Include="NetinaShop.Domain.Models.Claims" />
|
|
<Using Include="NetinaShop.Domain.Models.Settings" />
|
|
<Using Include="NetinaShop.Repository.Abstracts" />
|
|
<Using Include="NetinaShop.Repository.Repositories.Base.Contracts" />
|
|
<Using Include="Newtonsoft.Json" />
|
|
<Using Include="System.IdentityModel.Tokens.Jwt" />
|
|
<Using Include="System.Security.Claims" />
|
|
<Using Include="System.Text" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|