From eb73ad64fdcbd7bb0ccd0ef8d313fab36942e0cb Mon Sep 17 00:00:00 2001 From: Praburaj Date: Wed, 11 Mar 2015 17:28:30 -0700 Subject: [PATCH] React to Caching package rename Dependent on https://github.com/aspnet/Caching/pull/49/files --- samples/CookieSessionSample/MemoryCacheSessionStore.cs | 2 +- samples/CookieSessionSample/project.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/CookieSessionSample/MemoryCacheSessionStore.cs b/samples/CookieSessionSample/MemoryCacheSessionStore.cs index 4bb62d3aba..0ed51dfb29 100644 --- a/samples/CookieSessionSample/MemoryCacheSessionStore.cs +++ b/samples/CookieSessionSample/MemoryCacheSessionStore.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; using Microsoft.AspNet.Authentication; using Microsoft.AspNet.Authentication.Cookies.Infrastructure; -using Microsoft.Framework.Cache.Memory; +using Microsoft.Framework.Caching.Memory; namespace CookieSessionSample { diff --git a/samples/CookieSessionSample/project.json b/samples/CookieSessionSample/project.json index d2ffa0bcc6..253079cebb 100644 --- a/samples/CookieSessionSample/project.json +++ b/samples/CookieSessionSample/project.json @@ -2,7 +2,7 @@ "dependencies": { "Microsoft.AspNet.Authentication.Cookies": "1.0.0-*", "Microsoft.AspNet.Server.WebListener": "1.0.0-*", - "Microsoft.Framework.Cache.Memory": "1.0.0-*", + "Microsoft.Framework.Caching.Memory": "1.0.0-*", "Kestrel": "1.0.0-*", "Microsoft.AspNet.Server.IIS": "1.0.0-*" },