- BaseModel in Domain.Common with Id, Created, Updated, Deleted fields - AppDbContext in Infrastructure.Persistence overrides SaveChanges/Async to automatically set Created/Updated via ChangeTracker - Added EF Core 8 and Pomelo.EntityFrameworkCore.MySql 8 packages Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
602 B
XML
20 lines
602 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ClaudeTest.Application\ClaudeTest.Application.csproj" />
|
|
<ProjectReference Include="..\ClaudeTest.Domain\ClaudeTest.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.*" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.*" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|