Fixes ResponseCaching package name and link (#6989)

Changes the corresponding package for the `UseResponseCaching` middleware, which was incorrectly linking to the `Microsoft.AspNetCore.ResponseCompression` package, instead of the correct `Microsoft.AspNetCore.ResponseCaching`.
pull/6994/head
Rodrigo F. Fernandes 2018-06-11 18:47:30 -03:00 committed by Scott Addie
parent 85088a0c48
commit 984ae1618c
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ This article explains how to configure Response Caching Middleware in an ASP.NET
## Package ## Package
To include the middleware in your project, add a reference to the [Microsoft.AspNetCore.ResponseCompression](https://www.nuget.org/packages/Microsoft.AspNetCore.ResponseCompression/) package or use the [Microsoft.AspNetCore.App metapackage](xref:fundamentals/metapackage-app), which is available for use in ASP.NET Core 2.1 or later. To include the middleware in your project, add a reference to the [Microsoft.AspNetCore.ResponseCaching](https://www.nuget.org/packages/Microsoft.AspNetCore.ResponseCaching/) package or use the [Microsoft.AspNetCore.App metapackage](xref:fundamentals/metapackage-app), which is available for use in ASP.NET Core 2.1 or later.
## Configuration ## Configuration