claude-test/backend/ClaudeTest.Infrastructure/ClaudeTest.Infrastructure.csproj
Martin Švrčina 6b58dfa4e4 Add BaseModel and AppDbContext with auto timestamps
- 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>
2026-03-17 00:28:31 +01:00

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>