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.
42 lines
1.6 KiB
42 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>
|
|
$(NetFrameworkTargetFrameworks);
|
|
$(NetCoreTargetFrameworks);
|
|
$(NetStandardTargetFrameworks)
|
|
</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Description>OpenIddict token validation services.
|
|
|
|
Note: this package only contains the generic/host-agnostic validation components.
|
|
To use the validation feature on ASP.NET Core or OWIN/Katana, reference the OpenIddict.Validation.AspNetCore or OpenIddict.Validation.Owin package.</Description>
|
|
<PackageTags>$(PackageTags);validation</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>
|
|
<Compile Include="..\..\shared\OpenIddict.Extensions\*\*.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="OpenIddict.Abstractions" />
|
|
<Using Include="OpenIddict.Abstractions.OpenIddictConstants" Static="true" />
|
|
<Using Include="OpenIddict.Abstractions.OpenIddictResources" Alias="SR" />
|
|
<Using Include="OpenIddict.Validation.OpenIddictValidationEvents" Static="true" />
|
|
<Using Include="OpenIddict.Validation.OpenIddictValidationHandlers" Static="true" />
|
|
<Using Include="OpenIddict.Validation.OpenIddictValidationHandlerFilters" Static="true" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|