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.
32 lines
1020 B
32 lines
1020 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net461;net5.0;net6.0;netstandard2.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Description>Entity Framework 6.x stores for OpenIddict.</Description>
|
|
<PackageTags>$(PackageTags);entityframework</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenIddict.Core\OpenIddict.Core.csproj" />
|
|
<ProjectReference Include="..\OpenIddict.EntityFramework.Models\OpenIddict.EntityFramework.Models.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EntityFramework" />
|
|
</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="System.Data.Entity" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|