From efc77e60e09daf95db88b8e0f03312123ef688b6 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 8 May 2014 10:08:17 -0700 Subject: [PATCH] More fallout from the rename --- src/Microsoft.AspNet.HttpFeature/AssemblyNeutralAttribute.cs | 2 +- src/Microsoft.AspNet.HttpFeature/IHttpApplicationFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/IHttpBufferingFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/IHttpConnectionFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/IHttpRequestFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/IHttpRequestLifetimeFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/IHttpResponseFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/IHttpSendFileFeature.cs | 2 +- .../IHttpTransportLayerSecurityFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/IHttpWebSocketFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/Security/IAuthTypeContext.cs | 2 +- .../Security/IAuthenticateContext.cs | 2 +- .../Security/IAuthenticationHandler.cs | 2 +- src/Microsoft.AspNet.HttpFeature/Security/IChallengeContext.cs | 2 +- .../Security/IHttpAuthenticationFeature.cs | 2 +- src/Microsoft.AspNet.HttpFeature/Security/ISignInContext.cs | 2 +- src/Microsoft.AspNet.HttpFeature/Security/ISignOutContext .cs | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/Microsoft.AspNet.HttpFeature/AssemblyNeutralAttribute.cs b/src/Microsoft.AspNet.HttpFeature/AssemblyNeutralAttribute.cs index 7282be839b..0ed7a7e8ed 100644 --- a/src/Microsoft.AspNet.HttpFeature/AssemblyNeutralAttribute.cs +++ b/src/Microsoft.AspNet.HttpFeature/AssemblyNeutralAttribute.cs @@ -17,7 +17,7 @@ using System; -namespace Microsoft.Net.Runtime +namespace Microsoft.Framework.Runtime { [AssemblyNeutralAttribute] [AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)] diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpApplicationFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpApplicationFeature.cs index 218b8732f6..7abefe40d0 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpApplicationFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpApplicationFeature.cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using System.Threading; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpBufferingFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpBufferingFeature.cs index 84c9f5b885..d258b60673 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpBufferingFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpBufferingFeature.cs @@ -15,7 +15,7 @@ // See the Apache 2 License for the specific language governing // permissions and limitations under the License. -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpConnectionFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpConnectionFeature.cs index 1cb3cc12fa..87bec2d68b 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpConnectionFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpConnectionFeature.cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using System.Net; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpRequestFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpRequestFeature.cs index cad2c7ccf0..441df31f24 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpRequestFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpRequestFeature.cs @@ -18,7 +18,7 @@ using System; using System.Collections.Generic; using System.IO; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpRequestLifetimeFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpRequestLifetimeFeature.cs index 19956ea09f..067148392e 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpRequestLifetimeFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpRequestLifetimeFeature.cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using System.Threading; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpResponseFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpResponseFeature.cs index afd1cdebca..2b3d9e9372 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpResponseFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpResponseFeature.cs @@ -18,7 +18,7 @@ using System; using System.Collections.Generic; using System.IO; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpSendFileFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpSendFileFeature.cs index f53ca06c07..409db09e19 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpSendFileFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpSendFileFeature.cs @@ -17,7 +17,7 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpTransportLayerSecurityFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpTransportLayerSecurityFeature.cs index 8e7f9a5f1b..76c94f0a3c 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpTransportLayerSecurityFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpTransportLayerSecurityFeature.cs @@ -17,7 +17,7 @@ using System.Security.Cryptography.X509Certificates; using System.Threading.Tasks; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/IHttpWebSocketFeature.cs b/src/Microsoft.AspNet.HttpFeature/IHttpWebSocketFeature.cs index 8b2013652f..07c6bf4644 100644 --- a/src/Microsoft.AspNet.HttpFeature/IHttpWebSocketFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/IHttpWebSocketFeature.cs @@ -18,7 +18,7 @@ #if NET45 using System.Net.WebSockets; using System.Threading.Tasks; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature { diff --git a/src/Microsoft.AspNet.HttpFeature/Security/IAuthTypeContext.cs b/src/Microsoft.AspNet.HttpFeature/Security/IAuthTypeContext.cs index 13033b5f82..5ee1ddbaf2 100644 --- a/src/Microsoft.AspNet.HttpFeature/Security/IAuthTypeContext.cs +++ b/src/Microsoft.AspNet.HttpFeature/Security/IAuthTypeContext.cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using System.Collections.Generic; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature.Security { diff --git a/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticateContext.cs b/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticateContext.cs index d230f16764..06e61070c1 100644 --- a/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticateContext.cs +++ b/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticateContext.cs @@ -17,7 +17,7 @@ using System.Collections.Generic; using System.Security.Claims; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature.Security { diff --git a/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticationHandler.cs b/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticationHandler.cs index 942caa29a2..50f240f6b8 100644 --- a/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticationHandler.cs +++ b/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticationHandler.cs @@ -17,7 +17,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature.Security { diff --git a/src/Microsoft.AspNet.HttpFeature/Security/IChallengeContext.cs b/src/Microsoft.AspNet.HttpFeature/Security/IChallengeContext.cs index 873ee856d9..b19caca74d 100644 --- a/src/Microsoft.AspNet.HttpFeature/Security/IChallengeContext.cs +++ b/src/Microsoft.AspNet.HttpFeature/Security/IChallengeContext.cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using System.Collections.Generic; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature.Security { diff --git a/src/Microsoft.AspNet.HttpFeature/Security/IHttpAuthenticationFeature.cs b/src/Microsoft.AspNet.HttpFeature/Security/IHttpAuthenticationFeature.cs index b18bd0ea3f..3113a5e49a 100644 --- a/src/Microsoft.AspNet.HttpFeature/Security/IHttpAuthenticationFeature.cs +++ b/src/Microsoft.AspNet.HttpFeature/Security/IHttpAuthenticationFeature.cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using System.Security.Claims; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature.Security { diff --git a/src/Microsoft.AspNet.HttpFeature/Security/ISignInContext.cs b/src/Microsoft.AspNet.HttpFeature/Security/ISignInContext.cs index d83e224bb4..3a77ad533a 100644 --- a/src/Microsoft.AspNet.HttpFeature/Security/ISignInContext.cs +++ b/src/Microsoft.AspNet.HttpFeature/Security/ISignInContext.cs @@ -17,7 +17,7 @@ using System.Collections.Generic; using System.Security.Claims; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature.Security { diff --git a/src/Microsoft.AspNet.HttpFeature/Security/ISignOutContext .cs b/src/Microsoft.AspNet.HttpFeature/Security/ISignOutContext .cs index 0a98bdbac8..2cffae53b9 100644 --- a/src/Microsoft.AspNet.HttpFeature/Security/ISignOutContext .cs +++ b/src/Microsoft.AspNet.HttpFeature/Security/ISignOutContext .cs @@ -16,7 +16,7 @@ // permissions and limitations under the License. using System.Collections.Generic; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.HttpFeature.Security {