From 984ae1618cfeda5469da04fecdbbdd0f8cd86d2b Mon Sep 17 00:00:00 2001 From: "Rodrigo F. Fernandes" Date: Mon, 11 Jun 2018 18:47:30 -0300 Subject: [PATCH] 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`. --- aspnetcore/performance/caching/middleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/performance/caching/middleware.md b/aspnetcore/performance/caching/middleware.md index f4b7123eb9..f1bc354356 100644 --- a/aspnetcore/performance/caching/middleware.md +++ b/aspnetcore/performance/caching/middleware.md @@ -21,7 +21,7 @@ This article explains how to configure Response Caching Middleware in an ASP.NET ## 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