| <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <OutputType>Library</OutputType>        <Nullable>enable</Nullable>        <TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>        <Configurations>Debug;Release;Publish</Configurations>        <Platforms>AnyCPU</Platforms>    </PropertyGroup>    <ItemGroup>      <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />      <ProjectReference Include="..\InABox.Formatters.Core\InABox.Formatters.Core.csproj" />    </ItemGroup></Project>
 |