| 123456789101112131415161718192021222324252627282930313233 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <ImplicitUsings>enable</ImplicitUsings>        <Nullable>enable</Nullable>        <TargetFramework>net6.0</TargetFramework>        <LangVersion>10</LangVersion>    </PropertyGroup>    <ItemGroup>        <Compile Remove="archive\**" />    </ItemGroup>    <ItemGroup>        <EmbeddedResource Remove="archive\**" />    </ItemGroup>    <ItemGroup>        <None Remove="archive\**" />        <None Remove=".gitignore" />    </ItemGroup>    <ItemGroup>        <PackageReference Include="H.Formatters.MessagePack" Version="15.0.0" />        <PackageReference Include="H.Pipes" Version="15.0.0" />    </ItemGroup>    <ItemGroup>        <ProjectReference Include="..\InABox.Formatters.Core\InABox.Formatters.Core.csproj" />        <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />    </ItemGroup></Project>
 |