19 lines
846 B
XML
19 lines
846 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
|
|
<ProjectReference Include="..\Domain\Nashel.Modules.Identity.Domain.csproj" />
|
|
<ProjectReference Include="..\..\Geo\Application\Nashel.Modules.Geo.Application.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="MediatR" Version="14.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Features" Version="5.0.17" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<RootNamespace>Nashel.Modules.Identity.Application</RootNamespace>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</PropertyGroup>
|
|
</Project> |