| 123456789101112131415161718192021222324252627282930313233343536 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <OutputType>Exe</OutputType>        <TargetFramework>net8.0-android</TargetFramework>        <SupportedOSPlatformVersion>34</SupportedOSPlatformVersion>        <TargetPlatformSdkRootOverride>34</TargetPlatformSdkRootOverride>        <Nullable>enable</Nullable>        <ApplicationId>com.CompanyName.PRS.DigitalKey</ApplicationId>        <ApplicationVersion>1</ApplicationVersion>        <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>        <AndroidPackageFormat>apk</AndroidPackageFormat>        <AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>        <TargetPlatformIdentifier>android</TargetPlatformIdentifier>    </PropertyGroup>    <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">      <AndroidLinkMode>None</AndroidLinkMode>    </PropertyGroup>        <ItemGroup>        <PackageReference Include="Avalonia.Android" Version="11.3.3" />        <PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.3" />        <PackageReference Include="Xamarin.AndroidX.Core.SplashScreen" Version="1.0.1.14" />    </ItemGroup>    <ItemGroup>        <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.Android\InABox.Avalonia.Platform.Android.csproj" />        <ProjectReference Include="..\PRS.DigitalKey\PRS.DigitalKey.csproj"/>    </ItemGroup>    <ItemGroup>      <AndroidResource Include="Resources\drawable\Icon.png">        <Link>Resources\drawable\Icon.png</Link>      </AndroidResource>    </ItemGroup>    </Project>
 |