|
29 | 29 | <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage> |
30 | 30 | </PropertyGroup> |
31 | 31 |
|
| 32 | + <!-- |
| 33 | + https://apisof.net/ |
| 34 | + +===================+================+===================+==============================+======================+==========================+ |
| 35 | + | Target Framework | SUPPORTS_MATHF | SUPPORTS_HASHCODE | SUPPORTS_EXTENDED_INTRINSICS | SUPPORTS_SPAN_STREAM | SUPPORTS_ENCODING_STRING | |
| 36 | + +===================+================+===================+==============================+======================+==========================+ |
| 37 | + | netcoreapp3.1 | Y | Y | Y | Y | Y | |
| 38 | + | netcoreapp2.1 | Y | Y | Y | Y | Y | |
| 39 | + | netcoreapp2.0 | Y | N | N | N | N | |
| 40 | + | netstandard2.1 | Y | N | N | Y | Y | |
| 41 | + | netstandard2.0 | N | N | N | N | N | |
| 42 | + | netstandard1.3 | N | N | N | N | N | |
| 43 | + | net472 | N | N | Y | N | N | |
| 44 | + +===================+================+===================+==============================+======================+==========================+ |
| 45 | + --> |
| 46 | + |
| 47 | + <!-- TODO: Include additional targets to TargetFrameworks --> |
| 48 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'"> |
| 49 | + <DefineConstants>$(DefineConstants);SUPPORTS_MATHF;SUPPORTS_HASHCODE;SUPPORTS_EXTENDED_INTRINSICS;SUPPORTS_SPAN_STREAM;SUPPORTS_ENCODING_STRING</DefineConstants> |
| 50 | + </PropertyGroup> |
| 51 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1'"> |
| 52 | + <DefineConstants>$(DefineConstants);SUPPORTS_MATHF;SUPPORTS_HASHCODE;SUPPORTS_EXTENDED_INTRINSICS;SUPPORTS_SPAN_STREAM;SUPPORTS_ENCODING_STRING</DefineConstants> |
| 53 | + </PropertyGroup> |
| 54 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0'"> |
| 55 | + <DefineConstants>$(DefineConstants);SUPPORTS_MATHF;</DefineConstants> |
| 56 | + </PropertyGroup> |
| 57 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.1'"> |
| 58 | + <DefineConstants>$(DefineConstants);SUPPORTS_MATHF;SUPPORTS_SPAN_STREAM;SUPPORTS_ENCODING_STRING</DefineConstants> |
| 59 | + </PropertyGroup> |
| 60 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'net472'"> |
| 61 | + <DefineConstants>$(DefineConstants);SUPPORTS_EXTENDED_INTRINSICS</DefineConstants> |
| 62 | + </PropertyGroup> |
| 63 | + |
32 | 64 | <PropertyGroup Condition="'$(Configuration)' == 'Release'"> |
33 | 65 | <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
34 | 66 | </PropertyGroup> |
35 | | - |
| 67 | + |
36 | 68 | <!--TODO: Check what this is testing for and why does it fail?--> |
37 | 69 | <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> |
38 | 70 | <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow> |
|
0 commit comments