| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <PropertyGroup> |
| <TargetFrameworks>netstandard2.1;netstandard2.0;net46</TargetFrameworks> |
| <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| </PropertyGroup> |
| |
| <PropertyGroup Condition="'$(UNSAFE_BYTEBUFFER)' == 'true'"> |
| <DefineConstants>$(DefineConstants);UNSAFE_BYTEBUFFER</DefineConstants> |
| <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(BYTEBUFFER_NO_BOUNDS_CHECK)' == 'true'"> |
| <DefineConstants>$(DefineConstants);BYTEBUFFER_NO_BOUNDS_CHECK</DefineConstants> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(ENABLE_SPAN_T)' == 'true'"> |
| <DefineConstants>$(DefineConstants);ENABLE_SPAN_T</DefineConstants> |
| </PropertyGroup> |
| |
| <ItemGroup Condition="('$(ENABLE_SPAN_T)' == 'true') And (('$(TargetFramework)' == 'netstandard2.0') Or ('$(TargetFramework)' == 'net46'))"> |
| <PackageReference Include="System.Memory" Version="4.5.4" /> |
| </ItemGroup> |
| |
| </Project> |