InABox.Logging.Shared.csproj 899 B

123456789101112131415161718192021222324
  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)' == 'Release|AnyCPU' ">
  10. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  11. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  14. <DefineConstants>TRACE</DefineConstants>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  17. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  18. </PropertyGroup>
  19. </Project>