20 lines
865 B
XML
20 lines
865 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
|
|
<ProjectReference Include="..\Application\Nashel.Modules.Identity.Application.csproj" />
|
|
<ProjectReference Include="..\Domain\Nashel.Modules.Identity.Domain.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.15.0" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<RootNamespace>Nashel.Modules.Identity.Infrastructure</RootNamespace>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
</Project> |