| 1234567891011121314151617181920212223242526272829303132 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <TargetFramework>net8.0</TargetFramework>        <ImplicitUsings>enable</ImplicitUsings>        <Nullable>enable</Nullable>    </PropertyGroup>    <ItemGroup>        <PackageReference Include="FluentResults" Version="4.0.0" />        <PackageReference Include="System.Collections.Immutable" Version="9.0.7" />    </ItemGroup>    <ItemGroup>        <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />        <ProjectReference Include="..\InABox.Scripting\InABox.Scripting.csproj" />    </ItemGroup>    <ItemGroup>        <Compile Remove="archive\**" />    </ItemGroup>    <ItemGroup>        <EmbeddedResource Remove="archive\**" />    </ItemGroup>    <ItemGroup>        <None Remove="archive\**" />        <None Remove=".gitignore" />    </ItemGroup></Project>
 |