28 lines
1012 B
XML
28 lines
1012 B
XML
|
<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.16" />
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.16" />
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.16">
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
</PackageReference>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Reference Include="FoodOrdersContracts">
|
||
|
<HintPath>..\FoodOrdersContracts\obj\Debug\net6.0\ref\FoodOrdersContracts.dll</HintPath>
|
||
|
</Reference>
|
||
|
<Reference Include="FoodOrdersDataModels">
|
||
|
<HintPath>..\FoodOrdersDataModels\obj\Debug\net6.0\ref\FoodOrdersDataModels.dll</HintPath>
|
||
|
</Reference>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|