From 99a534caedc0ffff69635d612358219e65a0ede8 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Fri, 2 Oct 2020 11:23:02 -0700 Subject: [PATCH] Remove reference to old package in 3.0 section (#20094) --- aspnetcore/security/authentication/cookie.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/aspnetcore/security/authentication/cookie.md b/aspnetcore/security/authentication/cookie.md index 4564240da6..656ece2f69 100644 --- a/aspnetcore/security/authentication/cookie.md +++ b/aspnetcore/security/authentication/cookie.md @@ -22,8 +22,6 @@ For demonstration purposes in the sample app, the user account for the hypotheti ## Configuration -If the app doesn't use the [Microsoft.AspNetCore.App metapackage](xref:fundamentals/metapackage-app), create a package reference in the project file for the [Microsoft.AspNetCore.Authentication.Cookies](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.Cookies/) package. - In the `Startup.ConfigureServices` method, create the Authentication Middleware services with the and methods: [!code-csharp[](cookie/samples/3.x/CookieSample/Startup.cs?name=snippet1)]