InABox.Logging.Shared.csproj 657 B

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