| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | <Project Sdk="Microsoft.NET.Sdk">    <PropertyGroup>        <OutputType>Library</OutputType>		<Nullable>enable</Nullable>        <TargetFramework>netstandard2.1</TargetFramework>        <Configurations>Debug;Release;Publish</Configurations>        <Platforms>AnyCPU</Platforms>	</PropertyGroup>	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">	  <DefineConstants>TRACE; </DefineConstants>	</PropertyGroup>	<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">	  <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>	</PropertyGroup>    <ItemGroup>        <Compile Remove="InABox.Logging.Shared\**" />        <EmbeddedResource Remove="InABox.Logging.Shared\**" />        <None Remove="InABox.Logging.Shared\**" />        <None Remove=".gitignore" />    </ItemGroup>    <ItemGroup>        <PackageReference Include="AutoProperties.Fody" Version="1.25.0" />        <PackageReference Include="ExpressiveParser" Version="3.0.1" />        <PackageReference Include="FluentResults" Version="4.0.0" />        <PackageReference Include="Fody" Version="6.9.2">            <PrivateAssets>all</PrivateAssets>            <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>        </PackageReference>        <PackageReference Include="HtmlAgilityPack" Version="1.12.2" />        <PackageReference Include="Inflector.NetStandard" Version="1.2.2" />        <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />        <PackageReference Include="System.Collections.Immutable" Version="9.0.7" />        <PackageReference Include="System.Text.Json" Version="9.0.0" />        <PackageReference Include="TextFieldParserStandard" Version="1.0.0" />    </ItemGroup>    <ItemGroup>      <ProjectReference Include="..\InABox.Integration\InABox.Integration.csproj" />      <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />    </ItemGroup></Project>
 |