| 12345678910111213141516171819202122232425262728293031323334353637383940 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <TargetFramework>net6.0</TargetFramework>        <ImplicitUsings>enable</ImplicitUsings>        <Nullable>enable</Nullable>    </PropertyGroup>    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">      <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>    </PropertyGroup>    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">      <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>    </PropertyGroup>    <ItemGroup>        <Compile Remove="archive\**" />    </ItemGroup>    <ItemGroup>        <EmbeddedResource Remove="archive\**" />    </ItemGroup>    <ItemGroup>        <None Remove="archive\**" />        <None Remove=".gitignore" />    </ItemGroup>    <ItemGroup>        <PackageReference Include="System.Collections.Immutable" Version="7.0.0" />        <PackageReference Include="System.Data.SQLite.Core" Version="1.0.117" />    </ItemGroup>    <ItemGroup>        <ProjectReference Include="..\InABox.Database\InABox.Database.csproj" />        <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />    </ItemGroup></Project>
 |