Browse Source
Cross-compile OpenIddict.Server for .NET Framework 4.6.1
pull/795/head
Kévin Chalet
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
2 deletions
-
src/OpenIddict.Server/OpenIddict.Server.csproj
|
|
@ -1,7 +1,7 @@ |
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
<PropertyGroup> |
|
|
<TargetFrameworks>net472;netstandard2.0;netstandard2.1</TargetFrameworks> |
|
|
<TargetFrameworks>net461;net472;netstandard2.0;netstandard2.1</TargetFrameworks> |
|
|
</PropertyGroup> |
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
<PropertyGroup> |
|
|
@ -19,10 +19,13 @@ |
|
|
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="$(IdentityModelVersion)" /> |
|
|
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="$(IdentityModelVersion)" /> |
|
|
</ItemGroup> |
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' != 'net461' "> |
|
|
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_ECDSA</DefineConstants> |
|
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net472' Or '$(TargetFramework)' == 'netstandard2.1' "> |
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net472' Or '$(TargetFramework)' == 'netstandard2.1' "> |
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_CERTIFICATE_GENERATION</DefineConstants> |
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_CERTIFICATE_GENERATION</DefineConstants> |
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_DIRECT_KEY_CREATION_WITH_SPECIFIED_SIZE</DefineConstants> |
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_DIRECT_KEY_CREATION_WITH_SPECIFIED_SIZE</DefineConstants> |
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_ECDSA</DefineConstants> |
|
|
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_EPHEMERAL_KEY_SETS</DefineConstants> |
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_EPHEMERAL_KEY_SETS</DefineConstants> |
|
|
</PropertyGroup> |
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|