|
|
|
@ -31,22 +31,21 @@ |
|
|
|
|
|
|
|
<!-- |
|
|
|
https://apisof.net/ |
|
|
|
+===================+================+===================+==============================+======================+==========================+ |
|
|
|
| Target Framework | SUPPORTS_MATHF | SUPPORTS_HASHCODE | SUPPORTS_EXTENDED_INTRINSICS | SUPPORTS_SPAN_STREAM | SUPPORTS_ENCODING_STRING | |
|
|
|
+===================+================+===================+==============================+======================+==========================+ |
|
|
|
| netcoreapp3.1 | Y | Y | Y | Y | Y | |
|
|
|
| netcoreapp2.1 | Y | Y | Y | Y | Y | |
|
|
|
| netcoreapp2.0 | Y | N | N | N | N | |
|
|
|
| netstandard2.1 | Y | N | N | Y | Y | |
|
|
|
| netstandard2.0 | N | N | N | N | N | |
|
|
|
| netstandard1.3 | N | N | N | N | N | |
|
|
|
| net472 | N | N | Y | N | N | |
|
|
|
+===================+================+===================+==============================+======================+==========================+ |
|
|
|
+===================+=======+==========+=====================+=============+=================+====================+ |
|
|
|
| SUPPORTS | MATHF | HASHCODE | EXTENDED_INTRINSICS | SPAN_STREAM | ENCODING_STRING | RUNTIME_INTRINSICS | |
|
|
|
+===================+=======+==========+=====================+=============+=================+====================+ |
|
|
|
| netcoreapp3.1 | Y | Y | Y | Y | Y | Y | |
|
|
|
| netcoreapp2.1 | Y | Y | Y | Y | Y | N | |
|
|
|
| netcoreapp2.0 | Y | N | N | N | N | N | |
|
|
|
| netstandard2.1 | Y | Y | N | Y | Y | N | |
|
|
|
| netstandard2.0 | N | N | N | N | N | N | |
|
|
|
| netstandard1.3 | N | N | N | N | N | N | |
|
|
|
| net472 | N | N | Y | N | N | N | |
|
|
|
+===================+=======+==========+=====================+=============+=================+====================+ |
|
|
|
--> |
|
|
|
|
|
|
|
<!-- TODO: Include additional targets to TargetFrameworks --> |
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'"> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_MATHF;SUPPORTS_HASHCODE;SUPPORTS_EXTENDED_INTRINSICS;SUPPORTS_SPAN_STREAM;SUPPORTS_ENCODING_STRING</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);MATHF;SUPPORTS_HASHCODE;SUPPORTS_EXTENDED_INTRINSICS;SUPPORTS_SPAN_STREAM;SUPPORTS_ENCODING_STRING;SUPPORTS_RUNTIME_INTRINSICS;</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1'"> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_MATHF;SUPPORTS_HASHCODE;SUPPORTS_EXTENDED_INTRINSICS;SUPPORTS_SPAN_STREAM;SUPPORTS_ENCODING_STRING</DefineConstants> |
|
|
|
@ -55,7 +54,7 @@ |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_MATHF;</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.1'"> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_MATHF;SUPPORTS_SPAN_STREAM;SUPPORTS_ENCODING_STRING</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_MATHF;SUPPORTS_HASHCODE;SUPPORTS_SPAN_STREAM;SUPPORTS_ENCODING_STRING</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net472'"> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_EXTENDED_INTRINSICS</DefineConstants> |
|
|
|
|