| 1234567891011121314151617181920 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net8.0</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="H.Formatters.MessagePack" Version="15.0.0" />    <PackageReference Include="H.Pipes" Version="15.0.0" />    <PackageReference Include="System.Collections.Immutable" Version="9.0.7" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\InABox.Formatters.Core\InABox.Formatters.Core.csproj" />    <ProjectReference Include="..\InABox.IPC.Shared\InABox.IPC.Shared.csproj" />  </ItemGroup></Project>
 |