2024-05-12 19:04:40 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-04-25 13:16:23 +04:00
|
|
|
|
2024-05-12 19:04:40 +04:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
2024-04-25 13:16:23 +04:00
|
|
|
|
2024-05-12 19:04:40 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
|
|
</ItemGroup>
|
2024-04-25 13:16:23 +04:00
|
|
|
|
2024-05-12 19:04:40 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\SushiBarBusinessLogic\SushiBarBusinessLogic.csproj" />
|
|
|
|
<ProjectReference Include="..\SushiBarDatabaseImplement\SushiBarDatabaseImplement.csproj" />
|
|
|
|
</ItemGroup>
|
2024-04-25 13:16:23 +04:00
|
|
|
|
|
|
|
</Project>
|