|
121 | 121 |
|
122 | 122 | <!-- Define target framework specific constants.
|
123 | 123 | 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 | + +===================+=======+==========+=====================+=============+=================+====================+==============+=========|============|===============| |
135 | 135 | -->
|
136 | 136 | <Choose>
|
137 | 137 | <When Condition="'$(TargetFramework)' == 'net472' OR '$(TargetFramework)' == 'net48'">
|
|
154 | 154 | <DefineConstants>$(DefineConstants);SUPPORTS_ENCODING_STRING</DefineConstants>
|
155 | 155 | <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
|
156 | 156 | <DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants>
|
| 157 | + <DefineConstants>$(DefineConstants);SUPPORTS_BITOPERATIONS</DefineConstants> |
157 | 158 | </PropertyGroup>
|
158 | 159 | </When>
|
159 | 160 | <When Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
|
|
186 | 187 | <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
|
187 | 188 | <DefineConstants>$(DefineConstants);SUPPORTS_HOTPATH</DefineConstants>
|
188 | 189 | <DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants>
|
| 190 | + <DefineConstants>$(DefineConstants);SUPPORTS_BITOPERATIONS</DefineConstants> |
189 | 191 | </PropertyGroup>
|
190 | 192 | </When>
|
191 | 193 | </Choose>
|
|
0 commit comments