| 1234567891011121314151617181920212223242526272829 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <TargetFrameworks>net8.0-ios;net9.0-ios</TargetFrameworks>        <ImplicitUsings>enable</ImplicitUsings>        <Nullable>enable</Nullable>        <RootNamespace>InABox.Avalonia.Platform.iOS</RootNamespace>    </PropertyGroup>    <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">        <DefineConstants>TRACE;IOS</DefineConstants>    </PropertyGroup>    <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">        <DefineConstants>TRACE;IOS</DefineConstants>    </PropertyGroup>    <ItemGroup>      <ProjectReference Include="..\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />    </ItemGroup>    <ItemGroup>      <PackageReference Include="Avalonia" Version="11.2.2" />      <PackageReference Include="Microsoft.Maui.Essentials" Version="9.0.71" />      <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />      <PackageReference Include="Plugin.BLE" Version="3.1.0" />    </ItemGroup>    </Project>
 |