44 lines
1.1 KiB
XML
44 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<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="Microsoft.Extensions.Identity.Stores" Version="7.0.10" />
|
|
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Brizco.Common\Brizco.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<Using Include="Brizco.Common.Models.Entity" />
|
|
<Using Include="Brizco.Domain.Enums" />
|
|
<Using Include="Microsoft.AspNetCore.Identity" />
|
|
<Using Include="System.ComponentModel" />
|
|
<Using Include="System.ComponentModel.DataAnnotations" />
|
|
<Using Include="System.Runtime.CompilerServices" />
|
|
<Using Include="System.Security.Claims" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Enums\" />
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|