2024-03-09 17:32:17 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-04-25 20:09:08 +04:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2024-03-09 17:32:17 +04:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.27" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.27" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.27">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2024-04-25 20:09:08 +04:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.22" />
|
2024-03-09 17:32:17 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\FlowerShopContracts\FlowerShopContracts.csproj" />
|
|
|
|
<ProjectReference Include="..\FlowerShopDataModels\FlowerShopDataModels.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|