2024-05-01 19:43:56 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2024-05-28 22:41:22 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Remove="Controllers\StoreKeeperController.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-05-01 19:43:56 +04:00
|
|
|
<ItemGroup>
|
2024-05-28 20:21:49 +04:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2024-05-01 19:43:56 +04:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\ComputerHardwareStoreBusinessLogic\ComputerHardwareStoreBusinessLogic.csproj" />
|
|
|
|
<ProjectReference Include="..\ComputerHardwareStoreContracts\ComputerHardwareStoreContracts.csproj" />
|
|
|
|
<ProjectReference Include="..\ComputerHardwareStoreDatabaseImplement\ComputerHardwareStoreDatabaseImplement.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|