ed4a6578c3
- Remove Core (replaced by dedicated layers) - Add DAL.Abstract (domain model + repository interfaces) - Add DAL.EF (EF context, entities, migrations — references DAL.Abstract) - Add Services (business logic — references DAL.Abstract only, not DAL.EF) - Api and Worker reference Services + DAL.EF for DI wiring - Replace Core.Tests with Services.Tests - Dependency boundary enforced: Services never references DAL.EF Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
582 B
XML
19 lines
582 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HrynCo.NotificationService.Services\HrynCo.NotificationService.Services.csproj" />
|
|
<ProjectReference Include="..\HrynCo.NotificationService.DAL.EF\HrynCo.NotificationService.DAL.EF.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|