21 lines
910 B
XML
21 lines
910 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<Description>A compatibility layer for sharing identity databases between Microsoft.AspNet.Identity.EntityFramework and Microsoft.AspNetCore.Identity.EntityFrameworkCore.</Description>
|
|
<VersionPrefix>0.4.0</VersionPrefix>
|
|
<TargetFramework>net461</TargetFramework>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore;identity;membership</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNet.Identity.EntityFramework" Version="$(IdentityEFCompatVersion)" />
|
|
<PackageReference Include="Microsoft.Owin.Security.Cookies" Version="$(OwinVersion)" />
|
|
<PackageReference Include="Microsoft.Owin.Security.Interop" Version="$(AspNetCoreVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|