MyBookmark/Modules.Account.Application/Modules.Account.Application.csproj
2024-10-21 01:52:41 +03:00

20 lines
602 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="12.4.1" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Modules.Account.Database\Modules.Account.Database.csproj" />
<ProjectReference Include="..\Modules.Account.Domain\Modules.Account.Domain.csproj" />
</ItemGroup>
</Project>