Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Rename Microsoft.AspNet.HttpFeature to Microsoft.AspNet.Http.Interfaces #172

Merged
merged 1 commit into from
Jan 19, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion HttpAbstractions.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http.Core"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http", "src\Microsoft.AspNet.Http\Microsoft.AspNet.Http.kproj", "{22071333-15BA-4D16-A1D5-4D5B1A83FBDD}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.HttpFeature", "src\Microsoft.AspNet.HttpFeature\Microsoft.AspNet.HttpFeature.kproj", "{D9128247-8F97-48B8-A863-F1F21A029FCE}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http.Interfaces", "src\Microsoft.AspNet.Http.Interfaces\Microsoft.AspNet.Http.Interfaces.kproj", "{D9128247-8F97-48B8-A863-F1F21A029FCE}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.FeatureModel", "src\Microsoft.AspNet.FeatureModel\Microsoft.AspNet.FeatureModel.kproj", "{32A4C918-30EE-41DB-8E26-8A3BB88ED231}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections;
using System.Collections.Generic;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;

namespace Microsoft.AspNet.Http.Core.Collections
{
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNet.Http.Core/DefaultHttpContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Interfaces.Security;
using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure;
using Microsoft.AspNet.Http.Core.Security;
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/DefaultHttpRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure;

Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNet.Http.Core/DefaultHttpResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Interfaces.Security;
using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure;
using Microsoft.AspNet.Http.Core.Security;
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/HttpRequestFeature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;

namespace Microsoft.AspNet.Http.Core
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/HttpResponseFeature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;

namespace Microsoft.AspNet.Http.Core
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/QueryFeature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure;
using Microsoft.AspNet.WebUtilities;
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/RequestCookiesFeature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure;

Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/ResponseCookiesFeature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure;

Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/Security/AuthTypeContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces.Security;

namespace Microsoft.AspNet.Http.Core.Security
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces.Security;

namespace Microsoft.AspNet.Http.Core.Security
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces.Security;

namespace Microsoft.AspNet.Http.Core.Security
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System.Security.Claims;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces.Security;

namespace Microsoft.AspNet.Http.Core.Security
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/Security/SignInContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using System.Security.Claims;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces.Security;

namespace Microsoft.AspNet.Http.Core.Security
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/Security/SignOutContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System;
using System.Collections.Generic;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces.Security;

namespace Microsoft.AspNet.Http.Core.Security
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/WebSocketAcceptContext.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;

namespace Microsoft.AspNet.Http.Core
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.Http.Core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"Microsoft.AspNet.FeatureModel": "1.0.0-*",
"Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": "1.0.0-*",
"Microsoft.AspNet.Http.Interfaces": "1.0.0-*",
"Microsoft.AspNet.WebUtilities": "1.0.0-*",
"Microsoft.Net.Http.Headers": "1.0.0-*"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpApplicationFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpBufferingFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Threading.Tasks;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpClientCertificateFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Net;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpConnectionFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.IO;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpRequestFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpRequestLifetimeFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.IO;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpResponseFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpSendFileFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpUpgradeFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IHttpWebSocketFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface ISession
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface ISessionFactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
// TODO: Is there any reason not to flatten the Factory down into the Feature?
[AssemblyNeutral]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature
namespace Microsoft.AspNet.Http.Interfaces
{
[AssemblyNeutral]
public interface IWebSocketAcceptContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature.Security
namespace Microsoft.AspNet.Http.Interfaces.Security
{
[AssemblyNeutral]
public interface IAuthTypeContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Security.Claims;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature.Security
namespace Microsoft.AspNet.Http.Interfaces.Security
{
[AssemblyNeutral]
public interface IAuthenticateContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature.Security
namespace Microsoft.AspNet.Http.Interfaces.Security
{
[AssemblyNeutral]
public interface IAuthenticationHandler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature.Security
namespace Microsoft.AspNet.Http.Interfaces.Security
{
[AssemblyNeutral]
public interface IChallengeContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Security.Claims;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature.Security
namespace Microsoft.AspNet.Http.Interfaces.Security
{
[AssemblyNeutral]
public interface IHttpAuthenticationFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Security.Claims;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature.Security
namespace Microsoft.AspNet.Http.Interfaces.Security
{
[AssemblyNeutral]
public interface ISignInContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Microsoft.Framework.Runtime;

namespace Microsoft.AspNet.HttpFeature.Security
namespace Microsoft.AspNet.Http.Interfaces.Security
{
[AssemblyNeutral]
public interface ISignOutContext
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNet.Owin/OwinEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Interfaces.Security;
using Microsoft.AspNet.Http.Core.Security;

namespace Microsoft.AspNet.Owin
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNet.Owin/OwinFeatureCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.HttpFeature.Security;
using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Interfaces.Security;

namespace Microsoft.AspNet.Owin
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using System.Net.WebSockets;
using System.Threading.Tasks;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;

namespace Microsoft.AspNet.Owin
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System.Collections.Generic;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.Http.Interfaces;

namespace Microsoft.AspNet.Owin
{
Expand Down
Loading