26 lines
937 B
XML
26 lines
937 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>A component to allow the ASP.NET Core data protection stack to work with the ASP.NET 4.x <machineKey> element.</Description>
|
|
<TargetFramework>net461</TargetFramework>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnet;aspnetcore;dataprotection</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="web.config.transform" PackagePath="content/net46/" Pack="true" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.AspNetCore.DataProtection\Microsoft.AspNetCore.DataProtection.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="$(AspNetCoreVersion)" />
|
|
<Reference Include="System.Configuration" />
|
|
<Reference Include="System.Web" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|