| 123456789101112131415161718192021222324252627282930 | <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>        <Configurations>Debug;Release;Publish</Configurations>        <Platforms>AnyCPU</Platforms>    </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.3.2" />      <PackageReference Include="Microsoft.Maui.Essentials" Version="8.0.100" />      <PackageReference Include="Plugin.BLE" Version="3.1.0" />    </ItemGroup>    </Project>
 |