23 lines
903 B
XML
23 lines
903 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<VersionPrefix>1.2.0</VersionPrefix>
|
|
<Description>ASP.NET Core basic middleware for supporting HTTP method overrides. Includes:
|
|
* X-Forwarded-* headers to forward headers from a proxy.
|
|
* HTTP method override header.</Description>
|
|
<TargetFrameworks>net451;netstandard1.3</TargetFrameworks>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore;proxy;headers;xforwarded</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="1.2.0-*" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.2.0-*" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="1.2.0-*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|