| 123456789101112131415161718192021 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <OutputType>WinExe</OutputType>        <TargetFramework>net9.0-windows</TargetFramework>        <Nullable>enable</Nullable>        <ImplicitUsings>enable</ImplicitUsings>        <UseWPF>true</UseWPF>    </PropertyGroup>    <ItemGroup>      <PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />    </ItemGroup>    <ItemGroup>      <ProjectReference Include="..\..\DigitalKeyUnitCommands\DigitalKeyUnitCommands.csproj" />      <ProjectReference Include="..\..\inabox\InABox.Server\InABox.Server.csproj" />      <ProjectReference Include="..\..\inabox\inabox.wpf\InABox.Wpf.csproj" />    </ItemGroup></Project>
 |