2020-09-21 16:32:59 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2014-09-09 18:46:13 +00:00
|
|
|
|
<PropertyGroup>
|
2020-09-21 16:32:59 +00:00
|
|
|
|
<TargetFrameworks>netstandard2.1;netstandard2.0;net46</TargetFrameworks>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2014-09-09 18:46:13 +00:00
|
|
|
|
</PropertyGroup>
|
2020-09-21 16:32:59 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(UNSAFE_BYTEBUFFER)' == 'true'">
|
|
|
|
|
<DefineConstants>$(DefineConstants);UNSAFE_BYTEBUFFER</DefineConstants>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2018-10-30 00:21:30 +00:00
|
|
|
|
</PropertyGroup>
|
2020-09-21 16:32:59 +00:00
|
|
|
|
<PropertyGroup Condition="'$(BYTEBUFFER_NO_BOUNDS_CHECK)' == 'true'">
|
|
|
|
|
<DefineConstants>$(DefineConstants);BYTEBUFFER_NO_BOUNDS_CHECK</DefineConstants>
|
2018-10-30 00:21:30 +00:00
|
|
|
|
</PropertyGroup>
|
2020-09-21 16:32:59 +00:00
|
|
|
|
<PropertyGroup Condition="'$(ENABLE_SPAN_T)' == 'true'">
|
|
|
|
|
<DefineConstants>$(DefineConstants);ENABLE_SPAN_T</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|