diff --git a/src/Microsoft.AspNet.PipelineCore/Collections/ResponseCookiesCollection.cs b/src/Microsoft.AspNet.PipelineCore/Collections/ResponseCookiesCollection.cs index 1a11469597..7d7189ff7f 100644 --- a/src/Microsoft.AspNet.PipelineCore/Collections/ResponseCookiesCollection.cs +++ b/src/Microsoft.AspNet.PipelineCore/Collections/ResponseCookiesCollection.cs @@ -2,9 +2,10 @@ using System.Collections.Generic; using System.Globalization; using System.Linq; +using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions.Infrastructure; -namespace Microsoft.AspNet.Abstractions.Collections +namespace Microsoft.AspNet.PipelineCore.Collections { /// /// A wrapper for the response Set-Cookie header diff --git a/src/Microsoft.AspNet.PipelineCore/DefaultCanHasResponseCookies.cs b/src/Microsoft.AspNet.PipelineCore/DefaultCanHasResponseCookies.cs index ee176b7af9..c908b7fa11 100644 --- a/src/Microsoft.AspNet.PipelineCore/DefaultCanHasResponseCookies.cs +++ b/src/Microsoft.AspNet.PipelineCore/DefaultCanHasResponseCookies.cs @@ -1,5 +1,4 @@ using Microsoft.AspNet.Abstractions; -using Microsoft.AspNet.Abstractions.Collections; using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.PipelineCore.Collections;