16 lines
505 B
XML
16 lines
505 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ClassLibrary1SushiBarDataModels\SushiBarDataModels.csproj" />
|
|
<ProjectReference Include="..\SushiBarContracts\SushiBarContracts.csproj" />
|
|
<ProjectReference Include="..\SushiBarListImplement\SushiBarListImplement.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|