2024-04-06 21:47:06 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
2024-04-08 00:44:32 +04:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
2024-04-06 21:47:06 +04:00
|
|
|
|
2024-04-07 01:13:50 +04:00
|
|
|
|
2024-04-06 21:47:06 +04:00
|
|
|
|
2024-04-08 00:44:32 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.26" />
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" />
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\SushiBarContracts\SushiBarContracts.csproj" />
|
|
|
|
</ItemGroup>
|
2024-04-06 21:47:06 +04:00
|
|
|
|
|
|
|
</Project>
|