| 12345678910111213141516171819202122232425262728293031 | <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="..\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />    </ItemGroup>        <ItemGroup>      <PackageReference Include="Avalonia.Android" Version="11.2.2" />      <PackageReference Include="bblanchon.PDFium.Android" Version="136.0.7073" />      <PackageReference Include="Microsoft.Maui.Essentials" Version="9.0.70" />      <PackageReference Include="PDFtoImage" Version="4.1.1" />    </ItemGroup></Project>
 |