| 123456789101112131415161718 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net6.0-windows</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="websocketsharp.core" Version="1.0.0" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />    <ProjectReference Include="..\InABox.WebSocket.Shared\InABox.WebSocket.Shared.csproj" />  </ItemGroup></Project>
 |