2023-04-05 18:31:24 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-04-06 17:00:40 +04:00
|
|
|
<ItemGroup>
|
2023-05-17 22:27:48 +04:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.5" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.5" />
|
2023-04-06 17:00:40 +04:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.4">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-04-05 22:13:48 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\ComputerStoreContracts\ComputerStoreContracts.csproj" />
|
|
|
|
<ProjectReference Include="..\ComputerStoreDataModels\ComputerStoreDataModels.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-17 22:27:48 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Migrations\" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-04-05 18:31:24 +04:00
|
|
|
</Project>
|