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.
29 lines
1.2 KiB
29 lines
1.2 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Description>OpenIddict's core components, used to manage the applications, authorizations, scopes and tokens stored in the database.</Description>
|
|
<PackageTags>$(PackageTags);core</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenIddict.Abstractions\OpenIddict.Abstractions.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CryptoHelper" Version="$(CryptoHelperVersion)" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="$(JetBrainsVersion)" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(ExtensionsVersion)" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="$(ExtensionsVersion)" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="$(ExtensionsVersion)" />
|
|
<PackageReference Include="System.Linq.Async" Version="$(LinqAsyncVersion)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\..\shared\OpenIddict.Extensions\*\*.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|