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

This commit is contained in:
Stephen Halter 2015-01-16 17:08:30 -08:00
parent 26860ad7de
commit db484a7dcb
59 changed files with 60 additions and 60 deletions

View File

@ -11,7 +11,7 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http.Core"
EndProject EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http", "src\Microsoft.AspNet.Http\Microsoft.AspNet.Http.kproj", "{22071333-15BA-4D16-A1D5-4D5B1A83FBDD}" Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http", "src\Microsoft.AspNet.Http\Microsoft.AspNet.Http.kproj", "{22071333-15BA-4D16-A1D5-4D5B1A83FBDD}"
EndProject 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 EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.FeatureModel", "src\Microsoft.AspNet.FeatureModel\Microsoft.AspNet.FeatureModel.kproj", "{32A4C918-30EE-41DB-8E26-8A3BB88ED231}" Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.FeatureModel", "src\Microsoft.AspNet.FeatureModel\Microsoft.AspNet.FeatureModel.kproj", "{32A4C918-30EE-41DB-8E26-8A3BB88ED231}"
EndProject EndProject

View File

@ -5,7 +5,7 @@ using System;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.Http.Core.Collections namespace Microsoft.AspNet.Http.Core.Collections
{ {

View File

@ -12,8 +12,8 @@ using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure; using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.Http.Security; using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
using Microsoft.AspNet.Http.Core.Collections; using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure; using Microsoft.AspNet.Http.Core.Infrastructure;
using Microsoft.AspNet.Http.Core.Security; using Microsoft.AspNet.Http.Core.Security;

View File

@ -8,7 +8,7 @@ using System.Threading.Tasks;
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure; 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.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure; using Microsoft.AspNet.Http.Core.Infrastructure;

View File

@ -12,8 +12,8 @@ using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure; using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.Http.Security; using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
using Microsoft.AspNet.Http.Core.Collections; using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure; using Microsoft.AspNet.Http.Core.Infrastructure;
using Microsoft.AspNet.Http.Core.Security; using Microsoft.AspNet.Http.Core.Security;

View File

@ -4,7 +4,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.Http.Core namespace Microsoft.AspNet.Http.Core
{ {

View File

@ -4,7 +4,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.Http.Core namespace Microsoft.AspNet.Http.Core
{ {

View File

@ -4,7 +4,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Core.Collections; using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure; using Microsoft.AspNet.Http.Core.Infrastructure;
using Microsoft.AspNet.WebUtilities; using Microsoft.AspNet.WebUtilities;

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure; 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.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure; using Microsoft.AspNet.Http.Core.Infrastructure;

View File

@ -3,7 +3,7 @@
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Core.Collections; using Microsoft.AspNet.Http.Core.Collections;
using Microsoft.AspNet.Http.Core.Infrastructure; using Microsoft.AspNet.Http.Core.Infrastructure;

View File

@ -4,7 +4,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.AspNet.Http.Security; using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
namespace Microsoft.AspNet.Http.Core.Security namespace Microsoft.AspNet.Http.Core.Security
{ {

View File

@ -8,7 +8,7 @@ using System.Security.Claims;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Http.Security; using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
namespace Microsoft.AspNet.Http.Core.Security namespace Microsoft.AspNet.Http.Core.Security
{ {

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
namespace Microsoft.AspNet.Http.Core.Security namespace Microsoft.AspNet.Http.Core.Security
{ {

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Security.Claims; using System.Security.Claims;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
namespace Microsoft.AspNet.Http.Core.Security namespace Microsoft.AspNet.Http.Core.Security
{ {

View File

@ -4,7 +4,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Security.Claims; using System.Security.Claims;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
namespace Microsoft.AspNet.Http.Core.Security namespace Microsoft.AspNet.Http.Core.Security
{ {

View File

@ -3,7 +3,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
namespace Microsoft.AspNet.Http.Core.Security namespace Microsoft.AspNet.Http.Core.Security
{ {

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // 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. // 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 namespace Microsoft.AspNet.Http.Core
{ {

View File

@ -5,7 +5,7 @@
"dependencies": { "dependencies": {
"Microsoft.AspNet.FeatureModel": "1.0.0-*", "Microsoft.AspNet.FeatureModel": "1.0.0-*",
"Microsoft.AspNet.Http": "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.AspNet.WebUtilities": "1.0.0-*",
"Microsoft.Net.Http.Headers": "1.0.0-*" "Microsoft.Net.Http.Headers": "1.0.0-*"

View File

@ -4,7 +4,7 @@
using System.Threading; using System.Threading;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpApplicationFeature public interface IHttpApplicationFeature

View File

@ -3,7 +3,7 @@
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpBufferingFeature public interface IHttpBufferingFeature

View File

@ -6,7 +6,7 @@ using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpClientCertificateFeature public interface IHttpClientCertificateFeature

View File

@ -4,7 +4,7 @@
using System.Net; using System.Net;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpConnectionFeature public interface IHttpConnectionFeature

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpRequestFeature public interface IHttpRequestFeature

View File

@ -4,7 +4,7 @@
using System.Threading; using System.Threading;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpRequestLifetimeFeature public interface IHttpRequestLifetimeFeature

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpResponseFeature public interface IHttpResponseFeature

View File

@ -5,7 +5,7 @@ using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpSendFileFeature public interface IHttpSendFileFeature

View File

@ -5,7 +5,7 @@ using System.IO;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpUpgradeFeature public interface IHttpUpgradeFeature

View File

@ -5,7 +5,7 @@ using System.Net.WebSockets;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpWebSocketFeature public interface IHttpWebSocketFeature

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface ISession public interface ISession

View File

@ -4,7 +4,7 @@
using System; using System;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface ISessionFactory public interface ISessionFactory

View File

@ -3,7 +3,7 @@
using Microsoft.Framework.Runtime; 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? // TODO: Is there any reason not to flatten the Factory down into the Feature?
[AssemblyNeutral] [AssemblyNeutral]

View File

@ -3,7 +3,7 @@
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature namespace Microsoft.AspNet.Http.Interfaces
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IWebSocketAcceptContext public interface IWebSocketAcceptContext

View File

@ -4,7 +4,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature.Security namespace Microsoft.AspNet.Http.Interfaces.Security
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IAuthTypeContext public interface IAuthTypeContext

View File

@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.Security.Claims; using System.Security.Claims;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature.Security namespace Microsoft.AspNet.Http.Interfaces.Security
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IAuthenticateContext public interface IAuthenticateContext

View File

@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature.Security namespace Microsoft.AspNet.Http.Interfaces.Security
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IAuthenticationHandler public interface IAuthenticationHandler

View File

@ -4,7 +4,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature.Security namespace Microsoft.AspNet.Http.Interfaces.Security
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IChallengeContext public interface IChallengeContext

View File

@ -4,7 +4,7 @@
using System.Security.Claims; using System.Security.Claims;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature.Security namespace Microsoft.AspNet.Http.Interfaces.Security
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface IHttpAuthenticationFeature public interface IHttpAuthenticationFeature

View File

@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.Security.Claims; using System.Security.Claims;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature.Security namespace Microsoft.AspNet.Http.Interfaces.Security
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface ISignInContext public interface ISignInContext

View File

@ -4,7 +4,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature.Security namespace Microsoft.AspNet.Http.Interfaces.Security
{ {
[AssemblyNeutral] [AssemblyNeutral]
public interface ISignOutContext public interface ISignOutContext

View File

@ -14,8 +14,8 @@ using System.Security.Principal;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
using Microsoft.AspNet.Http.Core.Security; using Microsoft.AspNet.Http.Core.Security;
namespace Microsoft.AspNet.Owin namespace Microsoft.AspNet.Owin

View File

@ -15,8 +15,8 @@ using System.Security.Principal;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.HttpFeature.Security; using Microsoft.AspNet.Http.Interfaces.Security;
namespace Microsoft.AspNet.Owin namespace Microsoft.AspNet.Owin
{ {

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.WebSockets; using System.Net.WebSockets;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.Owin namespace Microsoft.AspNet.Owin
{ {

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.Owin namespace Microsoft.AspNet.Owin
{ {

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Net.WebSockets; using System.Net.WebSockets;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
namespace Microsoft.AspNet.Owin namespace Microsoft.AspNet.Owin
{ {

View File

@ -5,7 +5,7 @@
"Microsoft.AspNet.Http": "1.0.0-*", "Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.FeatureModel": "1.0.0-*", "Microsoft.AspNet.FeatureModel": "1.0.0-*",
"Microsoft.AspNet.Http.Core": "1.0.0-*", "Microsoft.AspNet.Http.Core": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": { "version": "1.0.0-*", "type": "build" } "Microsoft.AspNet.Http.Interfaces": { "version": "1.0.0-*", "type": "build" }
}, },
"frameworks": { "frameworks": {
"aspnet50": { }, "aspnet50": { },

View File

@ -2,7 +2,7 @@
"dependencies": { "dependencies": {
"Microsoft.AspNet.FeatureModel": "1.0.0-*", "Microsoft.AspNet.FeatureModel": "1.0.0-*",
"Microsoft.AspNet.Http": "1.0.0-*", "Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": "1.0.0-*", "Microsoft.AspNet.Http.Interfaces": "1.0.0-*",
"xunit.runner.kre": "1.0.0-*" "xunit.runner.kre": "1.0.0-*"
}, },
"commands": { "commands": {

View File

@ -9,7 +9,7 @@ using System.Security.Claims;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Xunit; using Xunit;
namespace Microsoft.AspNet.Http.Core.Tests namespace Microsoft.AspNet.Http.Core.Tests

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Globalization; using System.Globalization;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Xunit; using Xunit;
namespace Microsoft.AspNet.Http.Core.Tests namespace Microsoft.AspNet.Http.Core.Tests

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Moq; using Moq;
using Xunit; using Xunit;

View File

@ -2,7 +2,7 @@
"dependencies": { "dependencies": {
"Microsoft.AspNet.FeatureModel": "1.0.0-*", "Microsoft.AspNet.FeatureModel": "1.0.0-*",
"Microsoft.AspNet.Http": "1.0.0-*", "Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": "1.0.0-*", "Microsoft.AspNet.Http.Interfaces": "1.0.0-*",
"Microsoft.AspNet.Http.Core": "1.0.0-*", "Microsoft.AspNet.Http.Core": "1.0.0-*",
"xunit.runner.kre": "1.0.0-*" "xunit.runner.kre": "1.0.0-*"
}, },

View File

@ -2,7 +2,7 @@
"dependencies": { "dependencies": {
"Microsoft.AspNet.Http": "1.0.0-*", "Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.Http.Extensions": "1.0.0-*", "Microsoft.AspNet.Http.Extensions": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": "1.0.0-*", "Microsoft.AspNet.Http.Interfaces": "1.0.0-*",
"Microsoft.AspNet.Http.Core": "1.0.0-*", "Microsoft.AspNet.Http.Core": "1.0.0-*",
"xunit.runner.kre": "1.0.0-*" "xunit.runner.kre": "1.0.0-*"
}, },

View File

@ -4,7 +4,7 @@
using System; using System;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Core; using Microsoft.AspNet.Http.Core;
using Shouldly; using Shouldly;
using Xunit; using Xunit;

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Microsoft.AspNet.Http.Core; using Microsoft.AspNet.Http.Core;
using Xunit; using Xunit;

View File

@ -1,7 +1,7 @@
{ {
"dependencies": { "dependencies": {
"Microsoft.AspNet.Http": "1.0.0-*", "Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": "1.0.0-*", "Microsoft.AspNet.Http.Interfaces": "1.0.0-*",
"Microsoft.AspNet.Http.Core": "1.0.0-*", "Microsoft.AspNet.Http.Core": "1.0.0-*",
"Microsoft.AspNet.Testing": "1.0.0-*", "Microsoft.AspNet.Testing": "1.0.0-*",
"xunit.runner.kre": "1.0.0-*" "xunit.runner.kre": "1.0.0-*"

View File

@ -4,7 +4,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.Http.Interfaces;
using Xunit; using Xunit;
namespace Microsoft.AspNet.Owin namespace Microsoft.AspNet.Owin

View File

@ -2,7 +2,7 @@
"dependencies": { "dependencies": {
"Microsoft.AspNet.FeatureModel": "1.0.0-*", "Microsoft.AspNet.FeatureModel": "1.0.0-*",
"Microsoft.AspNet.Http": "1.0.0-*", "Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.HttpFeature": "1.0.0-*", "Microsoft.AspNet.Http.Interfaces": "1.0.0-*",
"Microsoft.AspNet.Owin": "1.0.0-*", "Microsoft.AspNet.Owin": "1.0.0-*",
"Microsoft.AspNet.Http.Core": "1.0.0-*", "Microsoft.AspNet.Http.Core": "1.0.0-*",
"xunit.runner.kre": "1.0.0-*" "xunit.runner.kre": "1.0.0-*"