InABox.Logging.Shared.csproj 556 B

1234567891011121314151617
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <Nullable>enable</Nullable>
  5. <TargetFramework>netstandard2.1</TargetFramework>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <DefineConstants>TRACE</DefineConstants>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  11. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  12. </PropertyGroup>
  13. </Project>