Versatile OpenID Connect stack for ASP.NET Core and Microsoft.Owin (compatible with ASP.NET 4.6.1)
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.
 
 
 
 
 
 

41 lines
1.8 KiB

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Description>System.Net.Http integration package for the OpenIddict client services.</Description>
<PackageTags>$(PackageTags);http;httpclient;validation</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\OpenIddict.Client\OpenIddict.Client.csproj" />
</ItemGroup>
<ItemGroup>
<!--
Note: while brought transitively by the Microsoft.Extensions.Http.Polly package,
the Polly.Extensions.Http dependency is explicitly added to work around a breaking
change introduced between Polly 6.x and 7.x and force both this package and applications
that reference OpenIddict.Validation.SystemNetHttp to use the latest Polly version (7.x).
-->
<PackageReference Include="Microsoft.Extensions.Http.Polly" />
<PackageReference Include="Polly.Extensions.Http" />
<PackageReference Include="System.Net.Http.Json" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Net.Http.Json" />
<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" />
<Using Include="OpenIddict.Client.SystemNetHttp.OpenIddictClientSystemNetHttpHandlers" Static="true" />
<Using Include="OpenIddict.Client.SystemNetHttp.OpenIddictClientSystemNetHttpHandlerFilters" Static="true" />
</ItemGroup>
</Project>