Application.csproj 538 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net10.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="MediatR" Version="14.1.0" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.7" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\Domain\Domain.csproj" />
  13. <ProjectReference Include="..\SharedKernel\SharedKernel.csproj" />
  14. </ItemGroup>
  15. </Project>