Skip to content

Commit 25f5653

Browse files
Merge pull request #18 from SixLabors/af/supports-bitoperations
Define SUPPORTS_BITOPERATIONS
2 parents 48e73f4 + d1942e1 commit 25f5653

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

msbuild/props/SixLabors.Global.props

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,17 @@
121121

122122
<!-- Define target framework specific constants.
123123
https://apisof.net/
124-
+===================+=======+==========+=====================+=============+=================+====================+==============+=========+============|
125-
| SUPPORTS | MATHF | HASHCODE | EXTENDED_INTRINSICS | SPAN_STREAM | ENCODING_STRING | RUNTIME_INTRINSICS | CODECOVERAGE | HOTPATH | CREATESPAN |
126-
+===================+=======+==========+=====================+=============+=================+====================+==============+=========|============|
127-
| >=netcoreapp3.1 | Y | Y | Y | Y | Y | Y | Y | Y | Y |
128-
| netcoreapp2.1 | Y | Y | Y | Y | Y | N | Y | N | Y |
129-
| netcoreapp2.0 | Y | N | N | N | N | N | Y | N | Y |
130-
| netstandard2.1 | Y | Y | N | Y | Y | N | Y | N | Y |
131-
| netstandard2.0 | N | N | N | N | N | N | Y | N | N |
132-
| netstandard1.3 | N | N | N | N | N | N | N | N | N |
133-
| net472, net48 | N | N | Y | N | N | N | Y | N | N |
134-
+===================+=======+==========+=====================+=============+=================+====================+==============+=========|============|
124+
+===================+=======+==========+=====================+=============+=================+====================+==============+=========+============|===============|
125+
| SUPPORTS | MATHF | HASHCODE | EXTENDED_INTRINSICS | SPAN_STREAM | ENCODING_STRING | RUNTIME_INTRINSICS | CODECOVERAGE | HOTPATH | CREATESPAN | BITOPERATIONS |
126+
+===================+=======+==========+=====================+=============+=================+====================+==============+=========|============|===============|
127+
| >=netcoreapp3.1 | Y | Y | Y | Y | Y | Y | Y | Y | Y | Y |
128+
| netcoreapp2.1 | Y | Y | Y | Y | Y | N | Y | N | Y | N |
129+
| netcoreapp2.0 | Y | N | N | N | N | N | Y | N | Y | N |
130+
| netstandard2.1 | Y | Y | N | Y | Y | N | Y | N | Y | Y |
131+
| netstandard2.0 | N | N | N | N | N | N | Y | N | N | N |
132+
| netstandard1.3 | N | N | N | N | N | N | N | N | N | N |
133+
| net472, net48 | N | N | Y | N | N | N | Y | N | N | N |
134+
+===================+=======+==========+=====================+=============+=================+====================+==============+=========|============|===============|
135135
-->
136136
<Choose>
137137
<When Condition="'$(TargetFramework)' == 'net472' OR '$(TargetFramework)' == 'net48'">
@@ -154,6 +154,7 @@
154154
<DefineConstants>$(DefineConstants);SUPPORTS_ENCODING_STRING</DefineConstants>
155155
<DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
156156
<DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants>
157+
<DefineConstants>$(DefineConstants);SUPPORTS_BITOPERATIONS</DefineConstants>
157158
</PropertyGroup>
158159
</When>
159160
<When Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
@@ -186,6 +187,7 @@
186187
<DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
187188
<DefineConstants>$(DefineConstants);SUPPORTS_HOTPATH</DefineConstants>
188189
<DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants>
190+
<DefineConstants>$(DefineConstants);SUPPORTS_BITOPERATIONS</DefineConstants>
189191
</PropertyGroup>
190192
</When>
191193
</Choose>

0 commit comments

Comments
 (0)