2024-04-29 21:38:18 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-05-27 14:57:41 +04:00
|
|
|
<InvariantGlobalization>false</InvariantGlobalization>
|
2024-04-29 21:38:18 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-30 23:49:53 +04:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-04-29 21:38:18 +04:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-05-25 17:47:14 +04:00
|
|
|
<ItemGroup>
|
2024-05-27 14:57:41 +04:00
|
|
|
<ProjectReference Include="..\ElectronicsShopBusinessLogic\ElectronicsShopBusinessLogic.csproj" />
|
2024-05-25 17:47:14 +04:00
|
|
|
<ProjectReference Include="..\ElectronicsShopContracts\ElectronicsShopContracts.csproj" />
|
2024-05-27 14:57:41 +04:00
|
|
|
<ProjectReference Include="..\ElectronicsShopDataBaseImplement\ElectronicsShopDataBaseImplement.csproj" />
|
2024-05-25 17:47:14 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
2024-04-29 21:38:18 +04:00
|
|
|
</Project>
|