| 1234567891011121314151617181920212223242526272829303132 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <OutputType>WinExe</OutputType>        <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>        <Nullable>enable</Nullable>        <BuiltInComInteropSupport>true</BuiltInComInteropSupport>        <Platforms>x86;x64;arm64</Platforms>        <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>        <UseWinUI>true</UseWinUI>        <WindowsPackaging>None</WindowsPackaging>        <EnableMsixTooling>true</EnableMsixTooling>    </PropertyGroup>    <PropertyGroup>        <ApplicationManifest>app.manifest</ApplicationManifest>    </PropertyGroup>    <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">        <OutputPath>bin\Debug\</OutputPath>    </PropertyGroup>    <ItemGroup>        <ProjectReference Include="..\..\PRS.Avalonia\InABox.Avalonia.Platform.Desktop\InABox.Avalonia.Platform.Desktop.csproj" />        <ProjectReference Include="..\PRS.DigitalKey\PRS.DigitalKey.csproj"/>    </ItemGroup>    <ItemGroup>      <PackageReference Include="Avalonia.Desktop" Version="11.2.3" />      <PackageReference Include="Avalonia.Diagnostics" Version="11.2.3" />    </ItemGroup>    </Project>
 |