| 12345678910111213141516171819 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <OutputType>WinExe</OutputType>        <TargetFramework>net8.0-windows7.0</TargetFramework>        <Nullable>enable</Nullable>        <ImplicitUsings>enable</ImplicitUsings>        <UseWPF>true</UseWPF>        <RootNamespace>Receiver</RootNamespace>    </PropertyGroup>    <ItemGroup>      <ProjectReference Include="..\..\..\..\inabox\InABox.Client.RPC\InABox.Client.RPC.csproj" />      <ProjectReference Include="..\..\..\..\inabox\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />      <ProjectReference Include="..\..\..\..\inabox\InABox.Server\InABox.Server.csproj" />      <ProjectReference Include="..\Command\Command.csproj" />    </ItemGroup></Project>
 |