This commit is contained in:
Халимов Рустам
2026-02-09 17:43:37 +03:00
parent 3dd6577313
commit c98c96e408
32 changed files with 1281 additions and 188 deletions
+26
View File
@@ -10,4 +10,30 @@
<PackageReference Include="Grpc.AspNetCore" Version="2.76.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-preview.6.25358.103" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Modules\Catalog\Nashel.Modules.Catalog.Infrastructure\Nashel.Modules.Catalog.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Catalog\Nashel.Modules.Catalog.Presentation\Nashel.Modules.Catalog.Presentation.csproj" />
<ProjectReference Include="..\Modules\Collaboration\Nashel.Modules.Collaboration.Infrastructure\Nashel.Modules.Collaboration.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Collaboration\Nashel.Modules.Collaboration.Presentation\Nashel.Modules.Collaboration.Presentation.csproj" />
<ProjectReference Include="..\Modules\Geo\Nashel.Modules.Geo.Infrastructure\Nashel.Modules.Geo.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Geo\Nashel.Modules.Geo.Presentation\Nashel.Modules.Geo.Presentation.csproj" />
<ProjectReference Include="..\Modules\Identity\Nashel.Modules.Identity.Infrastructure\Nashel.Modules.Identity.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Identity\Nashel.Modules.Identity.Presentation\Nashel.Modules.Identity.Presentation.csproj" />
<ProjectReference Include="..\Modules\Order\Nashel.Modules.Order.Infrastructure\Nashel.Modules.Order.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Order\Nashel.Modules.Order.Presentation\Nashel.Modules.Order.Presentation.csproj" />
<ProjectReference Include="..\Modules\Reputation\Nashel.Modules.Reputation.Infrastructure\Nashel.Modules.Reputation.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Reputation\Nashel.Modules.Reputation.Presentation\Nashel.Modules.Reputation.Presentation.csproj" />
<ProjectReference Include="..\Modules\Catalog\Infrastructure\Nashel.Modules.Catalog.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Catalog\Presentation\Nashel.Modules.Catalog.Presentation.csproj" />
<ProjectReference Include="..\Modules\Collaboration\Infrastructure\Nashel.Modules.Collaboration.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Collaboration\Presentation\Nashel.Modules.Collaboration.Presentation.csproj" />
<ProjectReference Include="..\Modules\Geo\Infrastructure\Nashel.Modules.Geo.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Geo\Presentation\Nashel.Modules.Geo.Presentation.csproj" />
<ProjectReference Include="..\Modules\Identity\Infrastructure\Nashel.Modules.Identity.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Identity\Presentation\Nashel.Modules.Identity.Presentation.csproj" />
<ProjectReference Include="..\Modules\Order\Infrastructure\Nashel.Modules.Order.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Order\Presentation\Nashel.Modules.Order.Presentation.csproj" />
<ProjectReference Include="..\Modules\Reputation\Infrastructure\Nashel.Modules.Reputation.Infrastructure.csproj" />
<ProjectReference Include="..\Modules\Reputation\Presentation\Nashel.Modules.Reputation.Presentation.csproj" />
</ItemGroup>
</Project>
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Catalog.Domain\Nashel.Modules.Catalog.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Catalog.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Catalog.Application</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Catalog.Domain</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Catalog.Application\Nashel.Modules.Catalog.Application.csproj" />
<ProjectReference Include="..\Nashel.Modules.Catalog.Domain\Nashel.Modules.Catalog.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Catalog.Application.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Catalog.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Catalog.Infrastructure</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Catalog.Application\Nashel.Modules.Catalog.Application.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Catalog.Application.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Catalog.Presentation</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Collaboration.Domain\Nashel.Modules.Collaboration.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Collaboration.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Collaboration.Application</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Collaboration.Domain</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Collaboration.Application\Nashel.Modules.Collaboration.Application.csproj" />
<ProjectReference Include="..\Nashel.Modules.Collaboration.Domain\Nashel.Modules.Collaboration.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Collaboration.Application.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Collaboration.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Collaboration.Infrastructure</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -1,18 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Collaboration.Application\Nashel.Modules.Collaboration.Application.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Collaboration.Application.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Collaboration.Presentation</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -1,15 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Nashel.Modules.Geo.Domain\Nashel.Modules.Geo.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Geo.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Geo.Application</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Geo.Domain</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Geo.Application\Nashel.Modules.Geo.Application.csproj" />
<ProjectReference Include="..\Nashel.Modules.Geo.Domain\Nashel.Modules.Geo.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Geo.Application.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Geo.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NetTopologySuite.IO.PostGis" Version="2.1.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Geo.Infrastructure</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
-20
View File
@@ -1,20 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
<PackageReference Include="NetTopologySuite" Version="2.6.0" />
<PackageReference Include="NetTopologySuite.IO.PostGis" Version="2.1.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Geo.Application\Nashel.Modules.Geo.Application.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Geo.Application.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Geo.Presentation</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Identity.Domain\Nashel.Modules.Identity.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Identity.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Identity.Application</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Identity.Domain</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Identity.Application\Nashel.Modules.Identity.Application.csproj" />
<ProjectReference Include="..\Nashel.Modules.Identity.Domain\Nashel.Modules.Identity.Domain.csproj" />
<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" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Identity.Infrastructure</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -1,18 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Identity.Application\Nashel.Modules.Identity.Application.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Identity.Application.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Identity.Presentation</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Order.Domain\Nashel.Modules.Order.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Order.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Order.Application</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Order.Domain</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Order.Application\Nashel.Modules.Order.Application.csproj" />
<ProjectReference Include="..\Nashel.Modules.Order.Domain\Nashel.Modules.Order.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Order.Application.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Order.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Order.Infrastructure</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -1,18 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Order.Application\Nashel.Modules.Order.Application.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Order.Application.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Order.Presentation</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Reputation.Domain\Nashel.Modules.Reputation.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Reputation.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Reputation.Application</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Reputation.Domain</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Reputation.Application\Nashel.Modules.Reputation.Application.csproj" />
<ProjectReference Include="..\Nashel.Modules.Reputation.Domain\Nashel.Modules.Reputation.Domain.csproj" />
<ProjectReference Include="..\..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Reputation.Application.csproj" />
<ProjectReference Include="..\Domain\Nashel.Modules.Reputation.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Reputation.Infrastructure</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -1,18 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\BuildingBlocks\Nashel.BuildingBlocks.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MediatR" Version="14.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Nashel.Modules.Reputation.Application\Nashel.Modules.Reputation.Application.csproj" />
<ProjectReference Include="..\Application\Nashel.Modules.Reputation.Application.csproj" />
</ItemGroup>
<PropertyGroup>
<RootNamespace>Nashel.Modules.Reputation.Presentation</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>