| 12345678910111213141516171819 | <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></Project>
 |