81 lines
3.0 KiB
XML
81 lines
3.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Mapster" Version="7.4.0" />
|
|
<PackageReference Include="Mapster.Core" Version="1.2.1" />
|
|
<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" />
|
|
</ItemGroup>
|
|
|
|
|
|
<!--<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<LangVersion>10</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Mapster" Version="7.3.0" />
|
|
<PackageReference Include="Mapster.Core" Version="1.2.0" />
|
|
<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" />
|
|
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
|
|
</ItemGroup>-->
|
|
|
|
|
|
<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 "$(TargetDir)$(ProjectName).dll" -n Brizco.Domain.Mappers -o Mappers" />
|
|
<Exec WorkingDirectory="$(ProjectDir)" Command="dotnet mapster mapper -a "$(TargetDir)$(ProjectName).dll" -n Brizco.Domain.Mappers -o Mappers" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Brizco.Common\Brizco.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<Using Include="Brizco.Common.Extensions" />
|
|
<Using Include="Brizco.Common.Models.Entity" />
|
|
<Using Include="Brizco.Common.Models.Mapper" />
|
|
<Using Include="Brizco.Domain.Dtos.LargeDtos" />
|
|
<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.MartenEntities.NewFeeds" />
|
|
<Using Include="Mapster" />
|
|
<Using Include="Microsoft.AspNetCore.Identity" />
|
|
<Using Include="System.ComponentModel" />
|
|
<Using Include="System.ComponentModel.DataAnnotations" />
|
|
<Using Include="System.Runtime.CompilerServices" />
|
|
<Using Include="System.Security.Claims" />
|
|
<Using Include="MediatR" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<Folder Include="MartenEntities\NewFeeds\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|