|
|
|
@ -67,10 +67,39 @@ |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<PackageReference Include="JetBrains.Annotations" PrivateAssets="All" /> |
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" PrivateAssets="All" /> |
|
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Condition=" '$(OS)' != 'Windows_NT' " PrivateAssets="All" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' != 'net461' "> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_ECDSA</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' != 'net461' And '$(TargetFramework)' != 'netstandard2.0' "> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_CERTIFICATE_GENERATION</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_DIRECT_KEY_CREATION_WITH_SPECIFIED_SIZE</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_EPHEMERAL_KEY_SETS</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_KEY_DERIVATION_WITH_SPECIFIED_HASH_ALGORITHM</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' != 'net461' And |
|
|
|
'$(TargetFramework)' != 'net472' And |
|
|
|
'$(TargetFramework)' != 'netstandard2.0' "> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_BASE64_SPAN_CONVERSION</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_STATIC_RANDOM_NUMBER_GENERATOR_METHODS</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_TIME_CONSTANT_COMPARISONS</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' != 'net461' And |
|
|
|
'$(TargetFramework)' != 'net472' And |
|
|
|
'$(TargetFramework)' != 'netcoreapp2.1' And |
|
|
|
'$(TargetFramework)' != 'netstandard2.0' "> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_BCL_ASYNC_ENUMERABLE</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_GENERIC_HOST</DefineConstants> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_SERVICE_PROVIDER_IN_HTTP_MESSAGE_HANDLER_BUILDER</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectCapability Include="DynamicDependentFile" /> |
|
|
|
<ProjectCapability Include="DynamicFileNesting" /> |
|
|
|
|