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.
25 lines
901 B
25 lines
901 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\packages.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net451;netstandard1.6</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Description>OpenIddict binders for ASP.NET Core MVC.</Description>
|
|
<Authors>Kévin Chalet</Authors>
|
|
<PackageTags>aspnetcore;authentication;jwt;openidconnect;openiddict;security</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenIddict.Core\OpenIddict.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AspNet.Security.OpenIdConnect.Server" Version="$(AspNetContribOpenIdServerVersion)" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="$(JetBrainsVersion)" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="$(AspNetCoreVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|