Api/Brizco.Domain/Brizco.Domain.csproj

81 lines
3.0 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
2024-07-25 18:42:18 +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>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2023-09-08 12:25:21 +03:30
</PropertyGroup>
<ItemGroup>
2023-12-07 21:47:04 +03:30
<PackageReference Include="Mapster" Version="7.4.0" />
<PackageReference Include="Mapster.Core" Version="1.2.1" />
2024-07-06 20:51:44 +03:30
<PackageReference Include="MediatR" Version="12.3.0" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.6" />
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
2024-07-25 18:42:18 +03:30
</ItemGroup>
2024-07-25 18:42:18 +03:30
<!--<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>10</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-09-08 12:25:21 +03:30
<ItemGroup>
<PackageReference Include="Mapster" Version="7.3.0" />
<PackageReference Include="Mapster.Core" Version="1.2.0" />
2023-09-15 12:37:02 +03:30
<PackageReference Include="MediatR" Version="12.1.1" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="5.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.0" />
2023-09-08 12:25:21 +03:30
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
2024-07-25 18:42:18 +03:30
</ItemGroup>-->
2023-09-08 12:25:21 +03:30
<Target Name="Mapster">
<Exec WorkingDirectory="$(ProjectDir)" Command="dotnet build -p:CopyLocalLockFileAssemblies=true" />
<Exec WorkingDirectory="$(ProjectDir)" Command="dotnet tool restore" />
<Exec WorkingDirectory="$(ProjectDir)" Command="dotnet mapster extension -a &quot;$(TargetDir)$(ProjectName).dll&quot; -n Brizco.Domain.Mappers -o Mappers" />
<Exec WorkingDirectory="$(ProjectDir)" Command="dotnet mapster mapper -a &quot;$(TargetDir)$(ProjectName).dll&quot; -n Brizco.Domain.Mappers -o Mappers" />
</Target>
2023-09-08 12:25:21 +03:30
<ItemGroup>
<ProjectReference Include="..\Brizco.Common\Brizco.Common.csproj" />
</ItemGroup>
<ItemGroup>
2023-10-24 15:36:09 +03:30
<Using Include="Brizco.Common.Extensions" />
2023-09-08 12:25:21 +03:30
<Using Include="Brizco.Common.Models.Entity" />
2023-09-15 12:37:02 +03:30
<Using Include="Brizco.Common.Models.Mapper" />
<Using Include="Brizco.Domain.Dtos.LargeDtos" />
2023-11-19 22:06:49 +03:30
<Using Include="Brizco.Domain.Dtos.ResponseDto" />
2023-09-15 12:37:02 +03:30
<Using Include="Brizco.Domain.Dtos.SmallDtos" />
2024-07-06 21:20:10 +03:30
<Using Include="Brizco.Domain.Entities.Complexes" />
<Using Include="Brizco.Domain.Entities.Routines" />
<Using Include="Brizco.Domain.Entities.ShiftPlans" />
2024-07-06 21:20:10 +03:30
<Using Include="Brizco.Domain.Entities.Shifts" />
<Using Include="Brizco.Domain.Entities.Users" />
2023-09-08 12:25:21 +03:30
<Using Include="Brizco.Domain.Enums" />
2024-07-31 10:18:38 +03:30
<Using Include="Brizco.Domain.MartenEntities.NewFeeds" />
<Using Include="Mapster" />
2023-09-08 12:25:21 +03:30
<Using Include="Microsoft.AspNetCore.Identity" />
<Using Include="System.ComponentModel" />
<Using Include="System.ComponentModel.DataAnnotations" />
<Using Include="System.Runtime.CompilerServices" />
<Using Include="System.Security.Claims" />
2023-09-15 12:37:02 +03:30
<Using Include="MediatR" />
2023-09-08 12:25:21 +03:30
</ItemGroup>
2024-07-31 10:18:38 +03:30
<ItemGroup>
<Folder Include="MartenEntities\NewFeeds\" />
</ItemGroup>
2023-09-08 12:25:21 +03:30
</Project>