| 12345678910111213141516171819202122232425262728293031 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <TargetFramework>net8.0</TargetFramework>        <ImplicitUsings>enable</ImplicitUsings>        <Nullable>enable</Nullable>    </PropertyGroup>    <ItemGroup>        <ProjectReference Include="..\InABox.Database\InABox.Database.csproj" />        <ProjectReference Include="..\InABox.WebSocket.Shared\InABox.WebSocket.Shared.csproj" />    </ItemGroup>    <ItemGroup>        <Compile Remove="archive\**" />    </ItemGroup>    <ItemGroup>        <EmbeddedResource Remove="archive\**" />    </ItemGroup>    <ItemGroup>        <None Remove="archive\**" />        <None Remove=".gitignore" />    </ItemGroup>    <ItemGroup>      <PackageReference Include="System.Collections.Immutable" Version="9.0.4" />    </ItemGroup></Project>
 |