Application.csproj 649 B

123456789101112131415161718192021222324
  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. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="MediatR" Version="14.0.0" />
  13. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.2" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Domain\Domain.csproj" />
  17. <ProjectReference Include="..\SharedKernel\SharedKernel.csproj" />
  18. </ItemGroup>
  19. </Project>