Application.csproj 563 B

12345678910111213141516171819202122
  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="Microsoft.EntityFrameworkCore" Version="10.0.7" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\Domain\Domain.csproj" />
  12. <ProjectReference Include="..\SharedKernel\SharedKernel.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <InternalsVisibleTo Include="Application.Tests" />
  16. </ItemGroup>
  17. </Project>