18 lines
853 B
XML
18 lines
853 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<RootNamespace>InboxIntel.Application</RootNamespace>
|
|
<AssemblyName>InboxIntel.Application</AssemblyName>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentValidation" Version="11.9.2" />
|
|
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.9.2" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
|
|
<!-- DbSet<> is exposed on IAppDbContext so the Application layer can query.
|
|
Pinned to 8.0.4 to match the Npgsql provider's Relational dependency. -->
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\InboxIntel.Domain\InboxIntel.Domain.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|