2023-05-18 21:34:36 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.5" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.5">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\BlogContracts\BlogContracts.csproj" />
|
|
|
|
<ProjectReference Include="..\BlogDataModels\BlogDataModels.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-09-06 20:32:55 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Implements\" />
|
|
|
|
<Folder Include="Model\" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-18 21:34:36 +04:00
|
|
|
</Project>
|