App.DAL.EF.csproj
712 bytes
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
|---|---|
| 2 | |
| 3 | <ItemGroup> |
| 4 | <ProjectReference Include="..\App.Domain\App.Domain.csproj" /> |
| 5 | <ProjectReference Include="..\Base.Contracts\Base.Contracts.csproj" /> |
| 6 | </ItemGroup> |
| 7 | |
| 8 | <ItemGroup> |
| 9 | <PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="10.0.5" /> |
| 10 | <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.5" /> |
| 11 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1" /> |
| 12 | </ItemGroup> |
| 13 | |
| 14 | <PropertyGroup> |
| 15 | <TargetFramework>net10.0</TargetFramework> |
| 16 | <ImplicitUsings>enable</ImplicitUsings> |
| 17 | <Nullable>enable</Nullable> |
| 18 | </PropertyGroup> |
| 19 | |
| 20 | </Project> |
| 21 | |