Application.csproj 749 B

1234567891011121314151617181920212223242526
  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. <Folder Include="Authentication\" />
  9. <Folder Include="Behaviors\" />
  10. <Folder Include="Features\Member\Log\" />
  11. <Folder Include="Features\ReferenceData\Dtos\" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="MediatR" Version="14.0.0" />
  15. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.2" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\Domain\Domain.csproj" />
  19. <ProjectReference Include="..\SharedKernel\SharedKernel.csproj" />
  20. </ItemGroup>
  21. </Project>