19 lines
490 B
XML
19 lines
490 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Cortex.Mediator" Version="2.1.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Lutra.Domain\Lutra.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|