Name Microsoft.AspNet.Abstractions to Microsoft.AspNet.Http.

This commit is contained in:
Chris Ross 2014-05-05 16:04:53 -07:00
parent 7fd80850ee
commit 0ecb989103
68 changed files with 82 additions and 82 deletions

View File

@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30401.0
# Visual Studio 14
VisualStudioVersion = 14.0.21628.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{A5A15F1C-885A-452A-A731-B0173DDBD913}"
EndProject
@ -9,7 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{F31FF137-3
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.PipelineCore", "src\Microsoft.AspNet.PipelineCore\Microsoft.AspNet.PipelineCore.kproj", "{BCF0F967-8753-4438-BD07-AADCA9CE509A}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Abstractions", "src\Microsoft.AspNet.Abstractions\Microsoft.AspNet.Abstractions.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
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.HttpFeature", "src\Microsoft.AspNet.HttpFeature\Microsoft.AspNet.HttpFeature.kproj", "{D9128247-8F97-48B8-A863-F1F21A029FCE}"
EndProject
@ -19,7 +19,7 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.PipelineCo
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.FeatureModel.Tests", "test\Microsoft.AspNet.FeatureModel.Tests\Microsoft.AspNet.FeatureModel.Tests.kproj", "{C5D2BAE1-E182-48A0-AA74-1AF14B782BF7}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Abstractions.Tests", "test\Microsoft.AspNet.Abstractions.Tests\Microsoft.AspNet.Abstractions.Tests.kproj", "{F16692B8-9F38-4DCA-A582-E43172B989C6}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http.Tests", "test\Microsoft.AspNet.Http.Tests\Microsoft.AspNet.Http.Tests.kproj", "{F16692B8-9F38-4DCA-A582-E43172B989C6}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Owin", "src\Microsoft.AspNet.Owin\Microsoft.AspNet.Owin.kproj", "{59BED991-F207-48ED-B24C-0A1D9C986C01}"
EndProject

View File

@ -17,7 +17,7 @@
using System;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
/// <summary>
/// Options used to create a new cookie.

View File

@ -16,8 +16,8 @@
// permissions and limitations under the License.
using System;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Extensions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Extensions;
namespace Microsoft.AspNet
{

View File

@ -17,7 +17,7 @@
using System.Threading.Tasks;
namespace Microsoft.AspNet.Abstractions.Extensions
namespace Microsoft.AspNet.Http.Extensions
{
public class MapMiddleware
{

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
namespace Microsoft.AspNet.Abstractions.Extensions
namespace Microsoft.AspNet.Http.Extensions
{
/// <summary>
/// Options for the Map middleware

View File

@ -17,8 +17,8 @@
using System;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Extensions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Extensions;
namespace Microsoft.AspNet
{

View File

@ -17,7 +17,7 @@
using System.Threading.Tasks;
namespace Microsoft.AspNet.Abstractions.Extensions
namespace Microsoft.AspNet.Http.Extensions
{
public class MapWhenMiddleware
{

View File

@ -18,7 +18,7 @@
using System;
using System.Threading.Tasks;
namespace Microsoft.AspNet.Abstractions.Extensions
namespace Microsoft.AspNet.Http.Extensions
{
/// <summary>
/// Options for the MapWhen middleware

View File

@ -16,7 +16,7 @@
// permissions and limitations under the License.
using System;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet
{

View File

@ -17,7 +17,7 @@
using System;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet
{

View File

@ -19,7 +19,7 @@ using System;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
/// <summary>
/// Represents the host portion of a Uri can be used to construct Uri's properly formatted and encoded for use in

View File

@ -21,9 +21,9 @@ using System.Linq;
using System.Security.Claims;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions.Security;
using Microsoft.AspNet.Http.Security;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
public abstract class HttpContext : IDisposable
{

View File

@ -20,7 +20,7 @@ using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
public abstract class HttpRequest
{

View File

@ -20,9 +20,9 @@ using System.Collections.Generic;
using System.IO;
using System.Security.Claims;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions.Security;
using Microsoft.AspNet.Http.Security;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
public abstract class HttpResponse
{

View File

@ -17,7 +17,7 @@
using System;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
public interface IBuilder
{

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
/// <summary>
/// Contains the parsed form values.

View File

@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
/// <summary>
/// Represents request and response headers

View File

@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
/// <summary>
/// Accessors for headers, query, forms, etc.

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
/// <summary>
/// A wrapper for the response Set-Cookie header

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
// TODO: [AssemblyNeutral]
public interface IServerInformation

View File

@ -17,7 +17,7 @@
using System;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)]
internal sealed class NotNullAttribute : Attribute

View File

@ -18,7 +18,7 @@
using System;
using System.Linq;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
/// <summary>
/// Provides correct escaping for Path and PathBase values when needed to reconstruct a request or redirect URI string

View File

@ -17,7 +17,7 @@
using System;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
/// <summary>
/// Provides correct handling for QueryString value when needed to reconstruct a request or redirect URI string

View File

@ -17,7 +17,7 @@
using System.Threading.Tasks;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
public delegate Task RequestDelegate(HttpContext context);
}

View File

@ -19,7 +19,7 @@ using System;
using System.Security.Claims;
using System.Security.Principal;
namespace Microsoft.AspNet.Abstractions.Security
namespace Microsoft.AspNet.Http.Security
{
/// <summary>
/// Acts as the return value from calls to the IAuthenticationManager's AuthenticeAsync methods.

View File

@ -19,7 +19,7 @@ using System;
using System.Collections.Generic;
using System.Globalization;
namespace Microsoft.AspNet.Abstractions.Security
namespace Microsoft.AspNet.Http.Security
{
/// <summary>
/// Contains information describing an authentication provider.

View File

@ -20,7 +20,7 @@ using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
namespace Microsoft.AspNet.Abstractions.Security
namespace Microsoft.AspNet.Http.Security
{
/// <summary>
/// Dictionary used to store state values about the authentication session.

View File

@ -25,7 +25,7 @@ using System.Net;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature;
namespace Microsoft.AspNet.Owin

View File

@ -18,7 +18,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Owin;
using Microsoft.AspNet.PipelineCore;

View File

@ -1,7 +1,7 @@
{
"version": "0.1-alpha-*",
"dependencies": {
"Microsoft.AspNet.Abstractions": "",
"Microsoft.AspNet.Http": "",
"Microsoft.AspNet.FeatureModel": "",
"Microsoft.AspNet.PipelineCore": "",
"Microsoft.AspNet.HttpFeature": ""

View File

@ -19,7 +19,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.PipelineCore
{

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using System.Collections.Generic;
namespace Microsoft.AspNet.PipelineCore.Collections

View File

@ -19,8 +19,8 @@ using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNet.Abstractions.Infrastructure;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.PipelineCore.Infrastructure;
namespace Microsoft.AspNet.PipelineCore.Collections

View File

@ -17,7 +17,7 @@
using System.Collections;
using System.Collections.Generic;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.PipelineCore
{

View File

@ -18,8 +18,8 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.AspNet.Abstractions.Infrastructure;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.PipelineCore.Infrastructure;
namespace Microsoft.AspNet.PipelineCore.Collections

View File

@ -18,7 +18,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.PipelineCore.Infrastructure;
namespace Microsoft.AspNet.PipelineCore.Collections

View File

@ -19,8 +19,8 @@ using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure;
namespace Microsoft.AspNet.PipelineCore.Collections
{

View File

@ -21,8 +21,8 @@ using System.Linq;
using System.Security.Claims;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Security;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.HttpFeature.Security;

View File

@ -20,8 +20,8 @@ using System.Globalization;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.PipelineCore.Collections;

View File

@ -22,9 +22,9 @@ using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Infrastructure;
using Microsoft.AspNet.Abstractions.Security;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.HttpFeature.Security;

View File

@ -18,7 +18,7 @@
using System.IO;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.PipelineCore.Collections;

View File

@ -16,7 +16,7 @@
// permissions and limitations under the License.
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.PipelineCore
{

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.PipelineCore
{

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.PipelineCore
{

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.PipelineCore.Collections;
namespace Microsoft.AspNet.PipelineCore

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
namespace Microsoft.AspNet.Abstractions.Infrastructure
namespace Microsoft.AspNet.Http.Infrastructure
{
internal static class Constants
{

View File

@ -20,8 +20,8 @@ using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.PipelineCore.Collections;
namespace Microsoft.AspNet.PipelineCore.Infrastructure

View File

@ -16,7 +16,7 @@
// permissions and limitations under the License.
using System.Collections.Generic;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.PipelineCore.Collections;

View File

@ -16,8 +16,8 @@
// permissions and limitations under the License.
using System;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Infrastructure;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.PipelineCore.Collections;

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.PipelineCore.Collections;

View File

@ -17,7 +17,7 @@
using System;
using System.Collections.Generic;
using Microsoft.AspNet.Abstractions.Security;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature.Security;
namespace Microsoft.AspNet.PipelineCore.Security

View File

@ -21,7 +21,7 @@ using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions.Security;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature.Security;
namespace Microsoft.AspNet.PipelineCore.Security

View File

@ -3,7 +3,7 @@
"version": "0.1-alpha-*",
"dependencies": {
"Microsoft.AspNet.FeatureModel": "",
"Microsoft.AspNet.Abstractions": "",
"Microsoft.AspNet.Http": "",
"Microsoft.AspNet.HttpFeature": ""
},
"configurations": {

View File

@ -2,7 +2,7 @@
"version": "0.1-alpha-*",
"dependencies": {
"Microsoft.AspNet.HttpFeature": "",
"Microsoft.AspNet.Abstractions": "",
"Microsoft.AspNet.Http": "",
"Microsoft.AspNet.FeatureModel": "",
"Xunit.KRunner": "0.1-alpha-*",
"xunit.abstractions": "2.0.0-aspnet-*",

View File

@ -20,7 +20,7 @@ using System.Collections.Generic;
using System.IO;
using Microsoft.AspNet.HttpFeature;
namespace Microsoft.AspNet.Abstractions.Extensions
namespace Microsoft.AspNet.Http.Extensions
{
public class FakeHttpRequestFeature : IHttpRequestFeature
{

View File

@ -22,7 +22,7 @@ using Microsoft.AspNet.PipelineCore;
using Shouldly;
using Xunit;
namespace Microsoft.AspNet.Abstractions.Extensions
namespace Microsoft.AspNet.Http.Extensions
{
public class MapPathMiddlewareTests
{

View File

@ -22,7 +22,7 @@ using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.PipelineCore;
using Xunit;
namespace Microsoft.AspNet.Abstractions.Extensions
namespace Microsoft.AspNet.Http.Extensions
{
using AppFunc = Func<IDictionary<string, object>, Task>;
using Predicate = Func<HttpContext, bool>;

View File

@ -18,7 +18,7 @@
using Microsoft.AspNet.Testing;
using Xunit;
namespace Microsoft.AspNet.Abstractions
namespace Microsoft.AspNet.Http
{
public class PathStringTests
{

View File

@ -1,7 +1,7 @@
{
"version": "0.1-alpha-*",
"dependencies": {
"Microsoft.AspNet.Abstractions": "",
"Microsoft.AspNet.Http": "",
"Microsoft.AspNet.PipelineCore": "",
"Microsoft.AspNet.HttpFeature": "",
"Microsoft.AspNet.Testing": "0.1-alpha-*",

View File

@ -21,8 +21,8 @@ using System.IO;
using System.Security.Claims;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Abstractions.Security;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Security;
using Microsoft.AspNet.HttpFeature;
using Xunit;

View File

@ -3,7 +3,7 @@
"dependencies": {
"Microsoft.AspNet.Owin": "",
"Microsoft.AspNet.HttpFeature": "",
"Microsoft.AspNet.Abstractions": "",
"Microsoft.AspNet.Http": "",
"Microsoft.AspNet.FeatureModel": "",
"Microsoft.AspNet.PipelineCore": "",
"Xunit.KRunner": "0.1-alpha-*",

View File

@ -15,7 +15,7 @@
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Xunit;
namespace Microsoft.AspNet.PipelineCore.Tests

View File

@ -21,7 +21,7 @@ using System.IO;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Xunit;

View File

@ -18,7 +18,7 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.HttpFeature;
using Moq;

View File

@ -2,7 +2,7 @@
"version": "0.1-alpha-*",
"dependencies": {
"Microsoft.AspNet.HttpFeature": "",
"Microsoft.AspNet.Abstractions": "",
"Microsoft.AspNet.Http": "",
"Microsoft.AspNet.FeatureModel": "",
"Microsoft.AspNet.PipelineCore": "",
"Xunit.KRunner": "0.1-alpha-*",