Renaming Microsoft.Framework.* -> Microsoft.Extensions.*

This commit is contained in:
Pranav K 2015-10-03 15:44:37 -07:00
parent 3cb50b9cf5
commit 61466af7a3
102 changed files with 134 additions and 134 deletions

View File

@ -1,4 +1,4 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
@ -35,11 +35,11 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Net.Http.Headers"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Net.Http.Headers.Tests", "test\Microsoft.Net.Http.Headers.Tests\Microsoft.Net.Http.Headers.Tests.xproj", "{E6BB7AD1-BD10-4A23-B780-F4A86ADF00D1}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.WebEncoders", "src\Microsoft.Framework.WebEncoders\Microsoft.Framework.WebEncoders.xproj", "{DD2CE416-765E-4000-A03E-C2FF165DA1B6}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.WebEncoders", "src\Microsoft.Extensions.WebEncoders\Microsoft.Extensions.WebEncoders.xproj", "{DD2CE416-765E-4000-A03E-C2FF165DA1B6}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.WebEncoders.Tests", "test\Microsoft.Framework.WebEncoders.Tests\Microsoft.Framework.WebEncoders.Tests.xproj", "{7AE2731D-43CD-4CF8-850A-4914DE2CE930}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.WebEncoders.Tests", "test\Microsoft.Extensions.WebEncoders.Tests\Microsoft.Extensions.WebEncoders.Tests.xproj", "{7AE2731D-43CD-4CF8-850A-4914DE2CE930}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.WebEncoders.Core", "src\Microsoft.Framework.WebEncoders.Core\Microsoft.Framework.WebEncoders.Core.xproj", "{BE9112CB-D87D-4080-9CC3-24492D49CBE6}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.WebEncoders.Core", "src\Microsoft.Extensions.WebEncoders.Core\Microsoft.Extensions.WebEncoders.Core.xproj", "{BE9112CB-D87D-4080-9CC3-24492D49CBE6}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Html.Abstractions", "src\Microsoft.AspNet.Html.Abstractions\Microsoft.AspNet.Html.Abstractions.xproj", "{68A28E4A-3ADE-4187-9625-4FF185887CB3}"
EndProject
@ -49,9 +49,9 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "SampleApp", "samples\Sample
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Html.Abstractions.Test", "test\Microsoft.AspNet.Html.Abstractions.Test\Microsoft.AspNet.Html.Abstractions.Test.xproj", "{2D187B88-94BD-4A39-AC97-F8F8B9363301}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.BufferedHtmlContent.Sources", "src\Microsoft.Framework.BufferedHtmlContent.Sources\Microsoft.Framework.BufferedHtmlContent.Sources.xproj", "{B1B2B906-24AE-4C57-AAC5-19B734014504}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.BufferedHtmlContent.Sources", "src\Microsoft.Extensions.BufferedHtmlContent.Sources\Microsoft.Extensions.BufferedHtmlContent.Sources.xproj", "{B1B2B906-24AE-4C57-AAC5-19B734014504}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.BufferedHtmlContent.Test", "test\Microsoft.Framework.BufferedHtmlContent.Test\Microsoft.Framework.BufferedHtmlContent.Test.xproj", "{3E5311E2-A73E-40CC-A58C-5A62CEAD43AE}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.BufferedHtmlContent.Test", "test\Microsoft.Extensions.BufferedHtmlContent.Test\Microsoft.Extensions.BufferedHtmlContent.Test.xproj", "{3E5311E2-A73E-40CC-A58C-5A62CEAD43AE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -16,9 +16,9 @@
"Microsoft.AspNet.Http.Features": { },
"Microsoft.AspNet.Owin": { },
"Microsoft.AspNet.WebUtilities": { },
"Microsoft.Framework.BufferedHtmlContent.Sources": { },
"Microsoft.Framework.WebEncoders": { },
"Microsoft.Framework.WebEncoders.Core": { },
"Microsoft.Extensions.BufferedHtmlContent.Sources": { },
"Microsoft.Extensions.WebEncoders": { },
"Microsoft.Extensions.WebEncoders.Core": { },
"Microsoft.Net.Http.Headers": { }
}
},

View File

@ -1,6 +1,6 @@
using System;
using System;
using System.Diagnostics;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace SampleApp
{

View File

@ -1,4 +1,4 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
@ -6,7 +6,7 @@ using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Text;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.WebEncoders;
namespace Microsoft.AspNet.Html.Abstractions
{

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.IO;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.WebEncoders;
namespace Microsoft.AspNet.Html.Abstractions
{

View File

@ -1,4 +1,4 @@
{
{
"version": "1.0.0-*",
"description": "ASP.NET 5 HTML content interface.",
"repository": {
@ -9,7 +9,7 @@
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.Framework.WebEncoders.Core": "1.0.0-*"
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
},
"frameworks": {
"net45" : { },

View File

@ -7,7 +7,7 @@ using System.Reflection;
using System.Threading.Tasks;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Abstractions;
using Microsoft.Framework.Internal;
using Microsoft.Extensions.Internal;
namespace Microsoft.AspNet.Builder
{

View File

@ -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.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http
{

View File

@ -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.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http
{

View File

@ -3,7 +3,7 @@
using System;
using System.Linq;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.WebEncoders;
namespace Microsoft.AspNet.Http
{

View File

@ -4,8 +4,8 @@
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Framework.Primitives;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.Primitives;
using Microsoft.Extensions.WebEncoders;
namespace Microsoft.AspNet.Http
{

View File

@ -10,8 +10,8 @@
},
"dependencies": {
"Microsoft.AspNet.Http.Features": "1.0.0-*",
"Microsoft.Framework.ActivatorUtilities.Sources": { "type": "build", "version": "1.0.0-*" },
"Microsoft.Framework.WebEncoders.Core": "1.0.0-*"
"Microsoft.Extensions.ActivatorUtilities.Sources": { "type": "build", "version": "1.0.0-*" },
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
},
"frameworks": {
"dnx451": { },

View File

@ -1,8 +1,8 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Http.Internal;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http
{

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Microsoft.AspNet.Http.Headers;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNet.Http

View File

@ -1,7 +1,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Internal
{

View File

@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Internal
{

View File

@ -4,7 +4,7 @@
using System.Collections;
using System.Collections.Generic;
using System.Text;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.WebEncoders;
namespace Microsoft.AspNet.Http.Extensions
{

View File

@ -10,7 +10,7 @@
},
"dependencies": {
"Microsoft.AspNet.Http.Abstractions": "1.0.0-*",
"Microsoft.Framework.WebEncoders.Core": "1.0.0-*",
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*",
"Microsoft.Net.Http.Headers": "1.0.0-*"
},
"frameworks": {

View File

@ -3,7 +3,7 @@
using System.Collections.Generic;
using System.IO;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Features
{

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Features
{

View File

@ -9,7 +9,7 @@
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.Framework.Primitives": "1.0.0-*"
"Microsoft.Extensions.Primitives": "1.0.0-*"
},
"frameworks": {
"dnx451": { },

View File

@ -9,7 +9,7 @@ using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNet.Http.Internal;
using Microsoft.AspNet.WebUtilities;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNet.Http.Features.Internal

View File

@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Features.Internal
{

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Features.Internal
{

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using Microsoft.AspNet.Http.Internal;
using Microsoft.AspNet.WebUtilities;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Features.Internal
{

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNet.Http.Internal;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNet.Http.Features.Internal

View File

@ -3,7 +3,7 @@
using System;
using System.Collections.Generic;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Internal
{

View File

@ -4,7 +4,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Internal
{

View File

@ -6,7 +6,7 @@ using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNet.Http.Internal

View File

@ -4,7 +4,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Http.Internal
{

View File

@ -4,7 +4,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNet.Http.Internal

View File

@ -3,8 +3,8 @@
using System;
using System.Linq;
using Microsoft.Framework.Primitives;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.Primitives;
using Microsoft.Extensions.WebEncoders;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNet.Http.Internal

View File

@ -1,10 +1,10 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Owin
{

View File

@ -1,10 +1,10 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Owin
{

View File

@ -17,7 +17,7 @@ using System.Threading.Tasks;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Features;
using Microsoft.AspNet.Http.Features.Authentication;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Owin
{

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Security.Claims;
using System.Security.Principal;
using Microsoft.AspNet.Http;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.Owin
{

View File

@ -7,7 +7,7 @@ using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.WebUtilities
{

View File

@ -3,7 +3,7 @@
using System;
using System.Collections.Generic;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.WebUtilities
{

View File

@ -7,7 +7,7 @@ using System.Diagnostics;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.WebUtilities
{

View File

@ -3,7 +3,7 @@
using System.Collections.Generic;
using System.IO;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
namespace Microsoft.AspNet.WebUtilities
{

View File

@ -4,8 +4,8 @@
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Framework.Primitives;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.Primitives;
using Microsoft.Extensions.WebEncoders;
namespace Microsoft.AspNet.WebUtilities
{

View File

@ -9,8 +9,8 @@
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.Framework.Primitives": "1.0.0-*",
"Microsoft.Framework.WebEncoders.Core": "1.0.0-*"
"Microsoft.Extensions.Primitives": "1.0.0-*",
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
},
"frameworks": {
"dnx451": { },

View File

@ -6,9 +6,9 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using Microsoft.AspNet.Html.Abstractions;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.WebEncoders;
namespace Microsoft.Framework.Internal
namespace Microsoft.Extensions.Internal
{
/// <summary>
/// Enumerable object collection which knows how to write itself.

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
@ -7,7 +7,7 @@
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>b1b2b906-24ae-4c57-aac5-19b734014504</ProjectGuid>
<RootNamespace>Microsoft.Framework.BufferedHtmlContent.Sources</RootNamespace>
<RootNamespace>Microsoft.Extensions.BufferedHtmlContent.Sources</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>

View File

@ -4,7 +4,7 @@
using System;
using System.Diagnostics;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
internal struct AllowedCharsBitmap
{

View File

@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Represents a filter which allows only certain Unicode code points through.

View File

@ -3,7 +3,7 @@
using System;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
internal static class EncoderCommon
{

View File

@ -4,7 +4,7 @@
using System;
using System.IO;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Helpful extension methods for the encoder classes.

View File

@ -3,7 +3,7 @@
using System;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Contains extension methods for fetching encoders from an <see cref="IServiceProvider"/>.

View File

@ -5,7 +5,7 @@ using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Contains helpers for dealing with byte-hex char conversions.

View File

@ -7,7 +7,7 @@ using System.IO;
using System.Runtime.CompilerServices;
using System.Threading;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// A class which can perform HTML encoding given an allow list of characters which

View File

@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Represents a filter which allows only certain Unicode code points through.

View File

@ -3,7 +3,7 @@
using System.IO;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Provides services for HTML-encoding input.

View File

@ -3,7 +3,7 @@
using System.IO;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Provides services for JavaScript-escaping strings.

View File

@ -3,7 +3,7 @@
using System.IO;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Provides services for URL-escaping strings.

View File

@ -7,7 +7,7 @@ using System.IO;
using System.Runtime.CompilerServices;
using System.Threading;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// A class which can perform JavaScript string escaping given an allow list of characters which

View File

@ -5,6 +5,6 @@ using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Microsoft.Framework.WebEncoders.Tests")]
[assembly: InternalsVisibleTo("Microsoft.Extensions.WebEncoders.Tests")]
[assembly: AssemblyMetadata("Serviceable", "True")]
[assembly: NeutralResourcesLanguage("en-us")]

View File

@ -7,7 +7,7 @@ using System.IO;
using System.Runtime.CompilerServices;
using System.Text;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
internal unsafe abstract class UnicodeEncoderBase
{

View File

@ -7,7 +7,7 @@ using System.Reflection;
using System.Runtime.CompilerServices;
using System.Threading;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Contains helpers for dealing with Unicode code points.

View File

@ -3,7 +3,7 @@
using System;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Represents a contiguous range of Unicode code points.

View File

@ -6,7 +6,7 @@ using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Threading;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Contains predefined <see cref="UnicodeRange"/> instances which correspond to blocks

View File

@ -4,7 +4,7 @@
using System;
using System.Threading;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public static partial class UnicodeRanges
{

View File

@ -7,7 +7,7 @@ using System.IO;
using System.Runtime.CompilerServices;
using System.Threading;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// A class which can perform URL string escaping given an allow list of characters which

View File

@ -3,7 +3,7 @@
using System;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Specifies options common to all three encoders (HtmlEncode, JavaScriptStringEncode, UrlEncode).

View File

@ -2,11 +2,11 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.Framework.DependencyInjection.Extensions;
using Microsoft.Framework.OptionsModel;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.OptionsModel;
using Microsoft.Extensions.WebEncoders;
namespace Microsoft.Framework.DependencyInjection
namespace Microsoft.Extensions.DependencyInjection
{
public static class EncoderServiceCollectionExtensions
{

View File

@ -9,9 +9,9 @@
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*",
"Microsoft.Framework.OptionsModel": "1.0.0-*",
"Microsoft.Framework.WebEncoders.Core": "1.0.0-*"
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
"Microsoft.Extensions.OptionsModel": "1.0.0-*",
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
},
"frameworks": {
"net45": { },

View File

@ -1,4 +1,4 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Globalization;
using System.IO;
using Microsoft.AspNet.Testing;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.WebEncoders;
using Xunit;
namespace Microsoft.AspNet.Html.Abstractions.Test

View File

@ -4,7 +4,7 @@
"Microsoft.AspNet.Testing": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"compile": [ "../Microsoft.Framework.WebEncoders.Tests/CommonTestEncoder.cs" ],
"compile": [ "../Microsoft.Extensions.WebEncoders.Tests/CommonTestEncoder.cs" ],
"commands": {
"test": "xunit.runner.aspnet"
},

View File

@ -1,4 +1,4 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
@ -7,7 +7,7 @@ using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNet.Http.Features;
using Microsoft.AspNet.Http.Internal;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
using Xunit;
namespace Microsoft.AspNet.Http.Extensions

View File

@ -2,7 +2,7 @@
"dependencies": {
"Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
"Microsoft.Framework.DependencyInjection": "1.0.0-*",
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"commands": {

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.Globalization;
using Microsoft.AspNet.Http.Features;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
using Xunit;
namespace Microsoft.AspNet.Http.Internal

View File

@ -3,7 +3,7 @@
using System;
using System.Collections.Generic;
using Microsoft.Framework.Primitives;
using Microsoft.Extensions.Primitives;
using Xunit;
namespace Microsoft.AspNet.Http.Internal

View File

@ -1,12 +1,12 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.IO;
using Microsoft.AspNet.Html.Abstractions;
using Microsoft.Framework.WebEncoders;
using Microsoft.Extensions.WebEncoders;
using Xunit;
namespace Microsoft.Framework.Internal
namespace Microsoft.Extensions.Internal
{
public class BufferedHtmlContentTest
{

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
@ -7,7 +7,7 @@
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>3e5311e2-a73e-40cc-a58c-5a62cead43ae</ProjectGuid>
<RootNamespace>Microsoft.Framework.BufferedHtmlContent.Test</RootNamespace>
<RootNamespace>Microsoft.Extensions.BufferedHtmlContent.Test</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>

View File

@ -4,10 +4,10 @@
},
"dependencies": {
"Microsoft.AspNet.Html.Abstractions": "1.0.0-*",
"Microsoft.Framework.BufferedHtmlContent.Sources": { "type": "build", "version": "1.0.0-*" },
"Microsoft.Extensions.BufferedHtmlContent.Sources": { "type": "build", "version": "1.0.0-*" },
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"compile": [ "../Microsoft.Framework.WebEncoders.Tests/CommonTestEncoder.cs" ],
"compile": [ "../Microsoft.Extensions.WebEncoders.Tests/CommonTestEncoder.cs" ],
"commands": {
"test": "xunit.runner.aspnet"
},

View File

@ -4,7 +4,7 @@
using System;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class AllowedCharsBitmapTests
{

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Linq;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class CodePointFilterTests
{

View File

@ -6,7 +6,7 @@ using System.Globalization;
using System.IO;
using System.Runtime.CompilerServices;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
/// <summary>
/// Encoder used for unit testing.

View File

@ -4,7 +4,7 @@
using System;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class EncoderCommonTests
{

View File

@ -5,7 +5,7 @@ using System;
using System.IO;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class EncoderExtensionsTests
{

View File

@ -1,10 +1,10 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Framework.DependencyInjection;
using Microsoft.Extensions.DependencyInjection;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class EncoderServiceCollectionExtensionsTests
{

View File

@ -4,7 +4,7 @@
using System;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class EncoderServiceProviderExtensionsTests
{

View File

@ -7,7 +7,7 @@ using System.IO;
using System.Linq;
using Newtonsoft.Json;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
internal static class Entities
{

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public static class Extensions
{

View File

@ -6,7 +6,7 @@ using System.Globalization;
using System.IO;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class HtmlEncoderTests
{

View File

@ -6,7 +6,7 @@ using System.Globalization;
using System.IO;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class JavaScriptStringEncoderTests
{

View File

@ -4,7 +4,7 @@
using System;
using Newtonsoft.Json;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
internal sealed class ParsedEntity
{

View File

@ -7,7 +7,7 @@ using System.Globalization;
using System.IO;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class UnicodeEncoderBaseTests
{

View File

@ -10,7 +10,7 @@ using System.Reflection;
using System.Text;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public unsafe class UnicodeHelpersTests
{

View File

@ -4,7 +4,7 @@
using System;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class UnicodeRangeTests
{

View File

@ -5,7 +5,7 @@ using System;
using System.Reflection;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class UnicodeRangesTests
{

View File

@ -8,7 +8,7 @@ using System.Linq;
using System.Text;
using Xunit;
namespace Microsoft.Framework.WebEncoders
namespace Microsoft.Extensions.WebEncoders
{
public class UrlEncoderTests
{

Some files were not shown because too many files have changed in this diff Show More