| 123456789101112131415161718192021 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <TargetFramework>net8.0</TargetFramework>        <ImplicitUsings>enable</ImplicitUsings>        <Nullable>enable</Nullable>        <RootNamespace>InABox.Avalonia.Platform</RootNamespace>        <LangVersion>default</LangVersion>    </PropertyGroup>    <ItemGroup>      <PackageReference Include="Autofac" Version="8.2.0" />      <PackageReference Include="Microsoft.Maui.Essentials" Version="8.0.93" />    </ItemGroup>    <ItemGroup>      <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />      <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />    </ItemGroup></Project>
 |