From d916a6d66a17354fb8cf24d127495443a37b0d04 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Tue, 6 May 2014 01:04:17 -0700 Subject: [PATCH] React to renames --- samples/CookieSample/Startup.cs | 2 +- .../CookieAuthenticationExtensions.cs | 2 +- .../CookieAuthenticationMiddleware.cs | 1 + .../Infrastructure/AuthenticationMiddleware.cs | 1 + .../Microsoft.AspNet.Security.kproj | 4 +--- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/samples/CookieSample/Startup.cs b/samples/CookieSample/Startup.cs index 510a76f4b6..7dbb26e6d6 100644 --- a/samples/CookieSample/Startup.cs +++ b/samples/CookieSample/Startup.cs @@ -2,12 +2,12 @@ using System; using System.Security.Claims; using Microsoft.AspNet; using Microsoft.AspNet.Http; -using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.DependencyInjection; using Microsoft.AspNet.DependencyInjection.Fallback; using Microsoft.AspNet.Logging; using Microsoft.AspNet.Security.Cookies; using Microsoft.AspNet.RequestContainer; +using Microsoft.AspNet.Builder; namespace CookieSample { diff --git a/src/Microsoft.AspNet.Security.Cookies/CookieAuthenticationExtensions.cs b/src/Microsoft.AspNet.Security.Cookies/CookieAuthenticationExtensions.cs index 4a97317398..a6fc420630 100644 --- a/src/Microsoft.AspNet.Security.Cookies/CookieAuthenticationExtensions.cs +++ b/src/Microsoft.AspNet.Security.Cookies/CookieAuthenticationExtensions.cs @@ -6,7 +6,7 @@ using Microsoft.AspNet.Logging; using Microsoft.AspNet.Security.Cookies; using Microsoft.AspNet.Security.DataProtection; -namespace Microsoft.AspNet +namespace Microsoft.AspNet.Builder { /// /// Extension methods provided by the cookies authentication middleware diff --git a/src/Microsoft.AspNet.Security.Cookies/CookieAuthenticationMiddleware.cs b/src/Microsoft.AspNet.Security.Cookies/CookieAuthenticationMiddleware.cs index 8fc9ea28c3..44d1f10600 100644 --- a/src/Microsoft.AspNet.Security.Cookies/CookieAuthenticationMiddleware.cs +++ b/src/Microsoft.AspNet.Security.Cookies/CookieAuthenticationMiddleware.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using System; +using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; using Microsoft.AspNet.Logging; using Microsoft.AspNet.Security.DataHandler; diff --git a/src/Microsoft.AspNet.Security/Infrastructure/AuthenticationMiddleware.cs b/src/Microsoft.AspNet.Security/Infrastructure/AuthenticationMiddleware.cs index 7ad8d931eb..726028c6d2 100644 --- a/src/Microsoft.AspNet.Security/Infrastructure/AuthenticationMiddleware.cs +++ b/src/Microsoft.AspNet.Security/Infrastructure/AuthenticationMiddleware.cs @@ -2,6 +2,7 @@ using System; using System.Threading.Tasks; +using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Security.Infrastructure diff --git a/test/Microsoft.AspNet.Security.Test/Microsoft.AspNet.Security.kproj b/test/Microsoft.AspNet.Security.Test/Microsoft.AspNet.Security.kproj index 8f60c5ab82..3a317e7f39 100644 --- a/test/Microsoft.AspNet.Security.Test/Microsoft.AspNet.Security.kproj +++ b/test/Microsoft.AspNet.Security.Test/Microsoft.AspNet.Security.kproj @@ -21,9 +21,7 @@ - - - + \ No newline at end of file