2024-05-04 21:54:07 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-08-27 04:03:48 +04:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-05-04 21:54:07 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-08-27 04:03:48 +04:00
|
|
|
<ProjectReference Include="..\DiningRoomBusinessLogic\DiningRoomBusinessLogic.csproj" />
|
2024-05-04 21:54:07 +04:00
|
|
|
<ProjectReference Include="..\DiningRoomContracts\DiningRoomContracts.csproj" />
|
2024-08-27 04:03:48 +04:00
|
|
|
<ProjectReference Include="..\DiningRoomDatabaseImplement\DiningRoomDatabaseImplement.csproj" />
|
|
|
|
<ProjectReference Include="..\DiningRoomDataModels\DiningRoomDataModels.csproj" />
|
2024-05-04 21:54:07 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|