You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.6 KiB
40 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(NetFrameworkTargetFrameworks);$(NetCoreTargetFrameworks)</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Description>OpenIddict authorization client services.
|
|
|
|
Note: this package only contains the generic/host-agnostic client components.
|
|
To use the client feature on ASP.NET Core or OWIN/Katana, reference the OpenIddict.Client.AspNetCore or OpenIddict.Client.Owin package.
|
|
</Description>
|
|
<PackageTags>$(PackageTags);client</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenIddict.Abstractions\OpenIddict.Abstractions.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" />
|
|
<PackageReference Include="Microsoft.IdentityModel.Protocols" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
|
|
<PackageReference Include="BouncyCastle.Cryptography" />
|
|
<PackageReference Include="Microsoft.Bcl.Cryptography" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="OpenIddict.Abstractions" />
|
|
<Using Include="OpenIddict.Abstractions.OpenIddictConstants" Static="true" />
|
|
<Using Include="OpenIddict.Abstractions.OpenIddictResources" Alias="SR" />
|
|
<Using Include="OpenIddict.Client.OpenIddictClientEvents" Static="true" />
|
|
<Using Include="OpenIddict.Client.OpenIddictClientHandlers" Static="true" />
|
|
<Using Include="OpenIddict.Client.OpenIddictClientHandlerFilters" Static="true" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|