1234567891011121314151617 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Library</OutputType>
- <Nullable>enable</Nullable>
- <TargetFramework>netstandard2.1</TargetFramework>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>TRACE</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
- </PropertyGroup>
- </Project>
|