| 1234567891011121314151617181920212223 | <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>DataLogistics</RootNamespace>    </PropertyGroup>    <ItemGroup>      <PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />    </ItemGroup>    <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>
 |