29 lines
1.4 KiB
XML
29 lines
1.4 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net6.0</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.5">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="6.1.0" />
|
|||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\FurnitureContracts\FurnitureContracts.csproj" />
|
|||
|
<ProjectReference Include="..\FurnitureFactoryBusinessLogic\FurnitureFactoryBusinessLogic.csproj" />
|
|||
|
<ProjectReference Include="..\FurnitureFactoryDataBaseImplement\FurnitureFactoryDataBaseImplement.csproj" />
|
|||
|
<ProjectReference Include="..\FurnitureFactoryDataModels\FurnitureFactoryDataModels.csproj" />
|
|||
|
<ProjectReference Include="..\FurnitureFactoryBusinessLogic\FurnitureFactoryBusinessLogic.csproj" />
|
|||
|
<ProjectReference Include="..\FurnitureContracts\FurnitureContracts.csproj" />
|
|||
|
<ProjectReference Include="..\FurnitureFactoryDataBaseImplement\FurnitureFactoryDataBaseImplement.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|