|
35 | 35 | <RepositoryUrl>https://github.com/synercoder/Primitives/</RepositoryUrl>
|
36 | 36 | <RestoreSources>
|
37 | 37 | https://api.nuget.org/v3/index.json;
|
38 |
| - https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json; |
39 | 38 | </RestoreSources>
|
40 | 39 | <UseSharedCompilation>true</UseSharedCompilation>
|
41 | 40 | </PropertyGroup>
|
42 | 41 |
|
43 | 42 | <PropertyGroup>
|
44 |
| - <LangVersion>10.0</LangVersion> |
| 43 | + <LangVersion>12.0</LangVersion> |
45 | 44 | </PropertyGroup>
|
46 | 45 |
|
47 |
| - |
48 |
| - <!-- Define target framework specific constants. |
49 |
| - https://apisof.net/ |
50 |
| - +===================+=======+==========+=====================+=============+=================+====================+==============+=========+============|===============| |
51 |
| - | SUPPORTS | MATHF | HASHCODE | EXTENDED_INTRINSICS | SPAN_STREAM | ENCODING_STRING | RUNTIME_INTRINSICS | CODECOVERAGE | HOTPATH | CREATESPAN | BITOPERATIONS | |
52 |
| - +===================+=======+==========+=====================+=============+=================+====================+==============+=========|============|===============| |
53 |
| - | >=netcoreapp3.1 | Y | Y | Y | Y | Y | Y | Y | Y | Y | Y | |
54 |
| - | netstandard2.1 | Y | Y | N | Y | Y | N | Y | N | Y | N | |
55 |
| - | netstandard2.0 | N | N | N | N | N | N | Y | N | N | N | |
56 |
| - | net48 | N | N | Y | N | N | N | Y | N | N | N | |
57 |
| - +===================+=======+==========+=====================+=============+=================+====================+==============+=========|============|===============| |
58 |
| - --> |
59 |
| - <Choose> |
60 |
| - <When Condition="'$(TargetFramework)' == 'net48'"> |
61 |
| - <PropertyGroup> |
62 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_EXTENDED_INTRINSICS</DefineConstants> |
63 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants> |
64 |
| - </PropertyGroup> |
65 |
| - </When> |
66 |
| - <When Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
67 |
| - <PropertyGroup> |
68 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_EXTENDED_INTRINSICS</DefineConstants> |
69 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants> |
70 |
| - </PropertyGroup> |
71 |
| - </When> |
72 |
| - <When Condition="'$(TargetFramework)' == 'netstandard2.1'"> |
73 |
| - <PropertyGroup> |
74 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_MATHF</DefineConstants> |
75 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_HASHCODE</DefineConstants> |
76 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_SPAN_STREAM</DefineConstants> |
77 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_ENCODING_STRING</DefineConstants> |
78 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants> |
79 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants> |
80 |
| - </PropertyGroup> |
81 |
| - </When> |
82 |
| - <When Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)','netcoreapp3.1'))"> |
83 |
| - <!--NETCORE 3.1. NET5.0, and future versions will fallback to this as the closest target.--> |
84 |
| - <PropertyGroup> |
85 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_MATHF</DefineConstants> |
86 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_HASHCODE</DefineConstants> |
87 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_EXTENDED_INTRINSICS</DefineConstants> |
88 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_SPAN_STREAM</DefineConstants> |
89 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_ENCODING_STRING</DefineConstants> |
90 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_RUNTIME_INTRINSICS</DefineConstants> |
91 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_CODECOVERAGE</DefineConstants> |
92 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_HOTPATH</DefineConstants> |
93 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_CREATESPAN</DefineConstants> |
94 |
| - <DefineConstants>$(DefineConstants);SUPPORTS_BITOPERATIONS</DefineConstants> |
95 |
| - </PropertyGroup> |
96 |
| - </When> |
97 |
| - </Choose> |
98 |
| - |
99 | 46 | </Project>
|
0 commit comments