<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> <InvariantGlobalization>false</InvariantGlobalization> </PropertyGroup> <ItemGroup> <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\ElectronicsShopBusinessLogic\ElectronicsShopBusinessLogic.csproj" /> <ProjectReference Include="..\ElectronicsShopContracts\ElectronicsShopContracts.csproj" /> <ProjectReference Include="..\ElectronicsShopDataBaseImplement\ElectronicsShopDataBaseImplement.csproj" /> </ItemGroup> </Project>