#162 - Change PipelineCore namespace to Http.Core. Part-1.
This commit is contained in:
parent
4fb21644fc
commit
68be1d1b19
|
|
@ -16,7 +16,7 @@ using System.Threading.Tasks;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
using Microsoft.AspNet.PipelineCore.Security;
|
||||
using Microsoft.AspNet.Http.Core.Security;
|
||||
|
||||
namespace Microsoft.AspNet.Owin
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.FeatureModel;
|
||||
using Microsoft.AspNet.Owin;
|
||||
using Microsoft.AspNet.PipelineCore;
|
||||
using Microsoft.AspNet.Http.Core;
|
||||
|
||||
namespace Microsoft.AspNet.Builder
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.IO;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.WebUtilities;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public static class BufferingHelper
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
using System.Collections.Generic;
|
||||
using Microsoft.AspNet.Http;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Collections
|
||||
namespace Microsoft.AspNet.Http.Core.Collections
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains the parsed form values.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Collections.Generic;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.Net.Http.Headers;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Collections
|
||||
namespace Microsoft.AspNet.Http.Core.Collections
|
||||
{
|
||||
public class FormFileCollection : List<IFormFile>, IFormFileCollection
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using Microsoft.AspNet.Http.Infrastructure;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.PipelineCore.Infrastructure;
|
||||
using Microsoft.AspNet.Http.Core.Infrastructure;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Collections
|
||||
namespace Microsoft.AspNet.Http.Core.Collections
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a wrapper for owin.RequestHeaders and owin.ResponseHeaders.
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class ItemsDictionary : IDictionary<object, object>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Collections;
|
|||
using System.Collections.Generic;
|
||||
using Microsoft.AspNet.Http;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Collections
|
||||
namespace Microsoft.AspNet.Http.Core.Collections
|
||||
{
|
||||
/// <summary>
|
||||
/// Accessors for query, forms, etc.
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ using System;
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.PipelineCore.Infrastructure;
|
||||
using Microsoft.AspNet.Http.Core.Infrastructure;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Collections
|
||||
namespace Microsoft.AspNet.Http.Core.Collections
|
||||
{
|
||||
public class RequestCookiesCollection : IReadableStringCollection
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ using System.Linq;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.Http.Infrastructure;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Collections
|
||||
namespace Microsoft.AspNet.Http.Core.Collections
|
||||
{
|
||||
/// <summary>
|
||||
/// A wrapper for the response Set-Cookie header
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ using System.Collections.Generic;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Collections
|
||||
namespace Microsoft.AspNet.Http.Core.Collections
|
||||
{
|
||||
public class SessionCollection : ISessionCollection
|
||||
{
|
||||
|
|
|
|||
|
|
@ -14,11 +14,11 @@ using Microsoft.AspNet.Http.Infrastructure;
|
|||
using Microsoft.AspNet.Http.Security;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.PipelineCore.Infrastructure;
|
||||
using Microsoft.AspNet.PipelineCore.Security;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Infrastructure;
|
||||
using Microsoft.AspNet.Http.Core.Security;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class DefaultHttpContext : HttpContext
|
||||
{
|
||||
|
|
@ -38,8 +38,8 @@ namespace Microsoft.AspNet.PipelineCore
|
|||
public DefaultHttpContext()
|
||||
: this(new FeatureCollection())
|
||||
{
|
||||
SetFeature<IHttpRequestFeature>(new DefaultHttpRequestFeature());
|
||||
SetFeature<IHttpResponseFeature>(new DefaultHttpResponseFeature());
|
||||
SetFeature<IHttpRequestFeature>(new HttpRequestFeature());
|
||||
SetFeature<IHttpResponseFeature>(new HttpResponseFeature());
|
||||
}
|
||||
|
||||
public DefaultHttpContext(IFeatureCollection features)
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@ using Microsoft.AspNet.FeatureModel;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.Http.Infrastructure;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.PipelineCore.Infrastructure;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Infrastructure;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class DefaultHttpRequest : HttpRequest
|
||||
{
|
||||
|
|
|
|||
|
|
@ -14,11 +14,11 @@ using Microsoft.AspNet.Http.Security;
|
|||
using Microsoft.AspNet.FeatureModel;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.PipelineCore.Infrastructure;
|
||||
using Microsoft.AspNet.PipelineCore.Security;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Infrastructure;
|
||||
using Microsoft.AspNet.Http.Core.Security;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class DefaultHttpResponse : HttpResponse
|
||||
{
|
||||
|
|
|
|||
|
|
@ -9,11 +9,11 @@ using System.Text;
|
|||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Microsoft.AspNet.WebUtilities;
|
||||
using Microsoft.Net.Http.Headers;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class FormFeature : IFormFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
using System.IO;
|
||||
using Microsoft.AspNet.Http;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class FormFile : IFormFile
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,11 +6,11 @@ using System.Collections.Generic;
|
|||
using System.IO;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class DefaultHttpRequestFeature : IHttpRequestFeature
|
||||
public class HttpRequestFeature : IHttpRequestFeature
|
||||
{
|
||||
public DefaultHttpRequestFeature()
|
||||
public HttpRequestFeature()
|
||||
{
|
||||
Headers = new Dictionary<string, string[]>(StringComparer.OrdinalIgnoreCase);
|
||||
Body = Stream.Null;
|
||||
|
|
@ -6,11 +6,11 @@ using System.Collections.Generic;
|
|||
using System.IO;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class DefaultHttpResponseFeature : IHttpResponseFeature
|
||||
public class HttpResponseFeature : IHttpResponseFeature
|
||||
{
|
||||
public DefaultHttpResponseFeature()
|
||||
public HttpResponseFeature()
|
||||
{
|
||||
StatusCode = 200;
|
||||
Headers = new Dictionary<string, string[]>(StringComparer.OrdinalIgnoreCase);
|
||||
|
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.Framework.Runtime;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public interface IFormFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public interface IItemsFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Microsoft.AspNet.Http;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public interface IQueryFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Microsoft.AspNet.Http;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public interface IRequestCookiesFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public interface IResponseCookiesFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public interface IServiceProvidersFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Microsoft.AspNet.FeatureModel;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Infrastructure
|
||||
namespace Microsoft.AspNet.Http.Core.Infrastructure
|
||||
{
|
||||
internal struct FeatureReference<T>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ using System.Linq;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.Http.Infrastructure;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Infrastructure
|
||||
namespace Microsoft.AspNet.Http.Core.Infrastructure
|
||||
{
|
||||
internal struct HeaderSegment : IEquatable<HeaderSegment>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class ItemsFeature : IItemsFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)]
|
||||
internal sealed class NotNullAttribute : Attribute
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@ using System.Collections.Generic;
|
|||
using Microsoft.AspNet.FeatureModel;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.PipelineCore.Infrastructure;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Infrastructure;
|
||||
using Microsoft.AspNet.WebUtilities;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class QueryFeature : IQueryFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.IO;
|
|||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// A Stream that wraps another stream starting at a certain offset and reading for the given length.
|
||||
|
|
|
|||
|
|
@ -7,10 +7,10 @@ using Microsoft.AspNet.FeatureModel;
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.Http.Infrastructure;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.PipelineCore.Infrastructure;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Infrastructure;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class RequestCookiesFeature : IRequestCookiesFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.FeatureModel;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.PipelineCore.Infrastructure;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Infrastructure;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class ResponseCookiesFeature : IResponseCookiesFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Collections.Generic;
|
|||
using Microsoft.AspNet.Http.Security;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Security
|
||||
namespace Microsoft.AspNet.Http.Core.Security
|
||||
{
|
||||
public class AuthTypeContext : IAuthTypeContext
|
||||
{
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ using System.Threading.Tasks;
|
|||
using Microsoft.AspNet.Http.Security;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Security
|
||||
namespace Microsoft.AspNet.Http.Core.Security
|
||||
{
|
||||
public class AuthenticateContext : IAuthenticateContext
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Security
|
||||
namespace Microsoft.AspNet.Http.Core.Security
|
||||
{
|
||||
public class ChallengeContext : IChallengeContext
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
using System.Security.Claims;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Security
|
||||
namespace Microsoft.AspNet.Http.Core.Security
|
||||
{
|
||||
public class HttpAuthenticationFeature : IHttpAuthenticationFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Collections.Generic;
|
|||
using System.Security.Claims;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Security
|
||||
namespace Microsoft.AspNet.Http.Core.Security
|
||||
{
|
||||
public class SignInContext : ISignInContext
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using Microsoft.AspNet.HttpFeature.Security;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Security
|
||||
namespace Microsoft.AspNet.Http.Core.Security
|
||||
{
|
||||
public class SignOutContext : ISignOutContext
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class ServiceProvidersFeature : IServiceProvidersFeature
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class WebSocketAcceptContext : IWebSocketAcceptContext
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Microsoft.Net.Http.Headers;
|
||||
using Xunit;
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNet.PipelineCore;
|
||||
using Microsoft.AspNet.Http.Core;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.Http.Extensions
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using Xunit;
|
|||
using Microsoft.AspNet.Builder;
|
||||
using Microsoft.Framework.DependencyInjection;
|
||||
using Microsoft.Framework.DependencyInjection.Fallback;
|
||||
using Microsoft.AspNet.PipelineCore;
|
||||
using Microsoft.AspNet.Http.Core;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNet.PipelineCore;
|
||||
using Microsoft.AspNet.Http.Core;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.Http
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System;
|
|||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.PipelineCore;
|
||||
using Microsoft.AspNet.Http.Core;
|
||||
using Shouldly;
|
||||
using Xunit;
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Collections.Generic;
|
|||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.PipelineCore;
|
||||
using Microsoft.AspNet.Http.Core;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.Builder.Extensions
|
||||
|
|
|
|||
|
|
@ -7,8 +7,7 @@ using System.Linq;
|
|||
using System.Security.Claims;
|
||||
using System.Threading;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.HttpFeature;
|
||||
using Microsoft.AspNet.PipelineCore;
|
||||
using Microsoft.AspNet.Http.Core;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.Owin
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ using Microsoft.AspNet.FeatureModel;
|
|||
using Microsoft.AspNet.HttpFeature;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Tests
|
||||
namespace Microsoft.AspNet.Http.Core.Tests
|
||||
{
|
||||
public class DefaultHttpContextTests
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ using Microsoft.AspNet.Http;
|
|||
using Microsoft.AspNet.HttpFeature;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Tests
|
||||
namespace Microsoft.AspNet.Http.Core.Tests
|
||||
{
|
||||
public class DefaultHttpRequestTests
|
||||
{
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ using System.Threading.Tasks;
|
|||
using Microsoft.AspNet.WebUtilities;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore
|
||||
namespace Microsoft.AspNet.Http.Core
|
||||
{
|
||||
public class FormFeatureTests
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.AspNet.PipelineCore.Collections;
|
||||
using Microsoft.AspNet.Http.Core.Collections;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Tests
|
||||
namespace Microsoft.AspNet.Http.Core.Tests
|
||||
{
|
||||
public class HeaderDictionaryTests
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,39 +0,0 @@
|
|||
// 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 System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Microsoft.AspNet.PipelineCore.Tests")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Microsoft.AspNet.PipelineCore.Tests")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2013")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("7c564547-b037-4054-a1ec-18e62717be47")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("0.1.0")]
|
||||
[assembly: AssemblyVersion("0.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.1.0")]
|
||||
|
|
@ -6,7 +6,7 @@ using Microsoft.AspNet.HttpFeature;
|
|||
using Moq;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.PipelineCore.Tests
|
||||
namespace Microsoft.AspNet.Http.Core.Tests
|
||||
{
|
||||
public class QueryFeatureTests
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue