|
30 | 30 |
|
31 | 31 | <!--
|
32 | 32 | https://apisof.net/
|
33 |
| - +===================+=======+==========+=====================+=============+=================+====================+==============+=========+ |
34 |
| - | SUPPORTS | MATHF | HASHCODE | EXTENDED_INTRINSICS | SPAN_STREAM | ENCODING_STRING | RUNTIME_INTRINSICS | CODECOVERAGE | HOTPATH | |
35 |
| - +===================+=======+==========+=====================+=============+=================+====================+==============+=========| |
36 |
| - | netcoreapp3.1 | Y | Y | Y | Y | Y | Y | Y | Y | |
37 |
| - | netcoreapp2.1 | Y | Y | Y | Y | Y | N | Y | N | |
38 |
| - | netcoreapp2.0 | Y | N | N | N | N | N | Y | N | |
39 |
| - | netstandard2.1 | Y | Y | N | Y | Y | N | Y | N | |
40 |
| - | netstandard2.0 | N | N | N | N | N | N | Y | N | |
41 |
| - | netstandard1.3 | N | N | N | N | N | N | N | N | |
42 |
| - | net472 | N | N | Y | N | N | N | Y | N | |
43 |
| - +===================+=======+==========+=====================+=============+=================+====================+==============+=========| |
| 33 | + +===================+=======+==========+=====================+=============+=================+====================+==============+=========+============| |
| 34 | + | SUPPORTS | MATHF | HASHCODE | EXTENDED_INTRINSICS | SPAN_STREAM | ENCODING_STRING | RUNTIME_INTRINSICS | CODECOVERAGE | HOTPATH | CREATESPAN | |
| 35 | + +===================+=======+==========+=====================+=============+=================+====================+==============+=========|============| |
| 36 | + | netcoreapp3.1 | Y | Y | Y | Y | Y | Y | Y | Y | Y | |
| 37 | + | netcoreapp2.1 | Y | Y | Y | Y | Y | N | Y | N | Y | |
| 38 | + | netcoreapp2.0 | Y | N | N | N | N | N | Y | N | Y | |
| 39 | + | netstandard2.1 | Y | Y | N | Y | Y | N | Y | N | Y | |
| 40 | + | netstandard2.0 | N | N | N | N | N | N | Y | N | N | |
| 41 | + | netstandard1.3 | N | N | N | N | N | N | N | N | N | |
| 42 | + | net472 | N | N | Y | N | N | N | Y | N | N | |
| 43 | + +===================+=======+==========+=====================+=============+=================+====================+==============+=========|============| |
44 | 44 | -->
|
45 | 45 |
|
46 | 46 | <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
|
|
52 | 52 | <DefineConstants>$(DefineConstants);SUPPORTS_RUNTIME_INTRINSICS</DefineConstants>
|
53 | 53 | <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
|
54 | 54 | <DefineConstants>$(DefineConstants);SUPPORTS_HOTPATH</DefineConstants>
|
| 55 | + <DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants> |
55 | 56 | </PropertyGroup>
|
56 | 57 | <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
|
57 | 58 | <DefineConstants>$(DefineConstants);SUPPORTS_MATHF</DefineConstants>
|
|
60 | 61 | <DefineConstants>$(DefineConstants);SUPPORTS_SPAN_STREAM</DefineConstants>
|
61 | 62 | <DefineConstants>$(DefineConstants);SUPPORTS_ENCODING_STRING</DefineConstants>
|
62 | 63 | <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
|
| 64 | + <DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants> |
63 | 65 | </PropertyGroup>
|
64 | 66 | <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
|
65 | 67 | <DefineConstants>$(DefineConstants);SUPPORTS_MATHF</DefineConstants>
|
66 | 68 | <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
|
| 69 | + <DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants> |
67 | 70 | </PropertyGroup>
|
68 | 71 | <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
|
69 | 72 | <DefineConstants>$(DefineConstants);SUPPORTS_MATHF</DefineConstants>
|
70 | 73 | <DefineConstants>$(DefineConstants);SUPPORTS_HASHCODE</DefineConstants>
|
71 | 74 | <DefineConstants>$(DefineConstants);SUPPORTS_SPAN_STREAM</DefineConstants>
|
72 | 75 | <DefineConstants>$(DefineConstants);SUPPORTS_ENCODING_STRING</DefineConstants>
|
73 | 76 | <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
|
| 77 | + <DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants> |
74 | 78 | </PropertyGroup>
|
75 | 79 | <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
76 | 80 | <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants>
|
|
0 commit comments