19 lines
922 B
XML
19 lines
922 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\..\build\common.props" />
|
|
<PropertyGroup>
|
|
<Description>ASP.NET Core HTTP feature interface definitions.</Description>
|
|
<TargetFrameworks>net451;netstandard1.3</TargetFrameworks>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore</PackageTags>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Primitives" Version="1.2.0-*" />
|
|
<PackageReference Include="System.ComponentModel" Version="4.4.0-*" />
|
|
<PackageReference Include="System.Security.Principal" Version="4.4.0-*" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
|
|
<PackageReference Include="System.Security.Claims" Version="4.4.0-*" />
|
|
<PackageReference Include="System.Net.WebSockets" Version="4.4.0-*" />
|
|
</ItemGroup>
|
|
</Project> |