| 1234567891011121314151617181920212223242526272829303132 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <TargetFramework>net8.0-android</TargetFramework>        <SupportedOSPlatformVersion>34</SupportedOSPlatformVersion>        <TargetPlatformSdkRootOverride>34</TargetPlatformSdkRootOverride>        <ImplicitUsings>enable</ImplicitUsings>        <Nullable>enable</Nullable>        <LangVersion>default</LangVersion>    </PropertyGroup>    <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">      <DefineConstants>TRACE;ANDROID</DefineConstants>    </PropertyGroup>    <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">      <DefineConstants>TRACE;ANDROID</DefineConstants>    </PropertyGroup>    <ItemGroup>      <ProjectReference Include="..\..\..\..\..\development\inabox\inabox.logging.shared\InABox.Logging.Shared.csproj" />      <ProjectReference Include="..\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />    </ItemGroup>        <ItemGroup>      <PackageReference Include="Avalonia" Version="11.2.3" />      <PackageReference Include="bblanchon.PDFium.Android" Version="135.0.7009" />      <PackageReference Include="Microsoft.Maui.Essentials" Version="8.0.93" />      <PackageReference Include="PDFtoImage" Version="5.0.0" />    </ItemGroup></Project>
 |