diff --git a/src/Microsoft.AspNet.Razor.Runtime.Precompilation/PrecompilationTagHelperTypeResolver.cs b/src/Microsoft.AspNet.Razor.Runtime.Precompilation/PrecompilationTagHelperTypeResolver.cs index 5622267dd0..2b711cc79a 100644 --- a/src/Microsoft.AspNet.Razor.Runtime.Precompilation/PrecompilationTagHelperTypeResolver.cs +++ b/src/Microsoft.AspNet.Razor.Runtime.Precompilation/PrecompilationTagHelperTypeResolver.cs @@ -17,13 +17,13 @@ namespace Microsoft.AspNet.Razor.Runtime.Precompilation private readonly object _assemblyLookupLock = new object(); private readonly Dictionary> _assemblyLookup = new Dictionary>(StringComparer.Ordinal); - private readonly Compilation _compilation; + private readonly CodeAnalysis.Compilation _compilation; /// /// Initializes a new instance of . /// - /// The . - public PrecompilationTagHelperTypeResolver(Compilation compilation) + /// The . + public PrecompilationTagHelperTypeResolver(CodeAnalysis.Compilation compilation) { if (compilation == null) { diff --git a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/HtmlTargetElementAttribute.cs b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/HtmlTargetElementAttribute.cs index 2e2882dbfc..ad86e36c75 100644 --- a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/HtmlTargetElementAttribute.cs +++ b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/HtmlTargetElementAttribute.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Runtime.TagHelpers { diff --git a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/ITypeInfo.cs b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/ITypeInfo.cs index 82995792e3..1eb7ea2c34 100644 --- a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/ITypeInfo.cs +++ b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/ITypeInfo.cs @@ -29,7 +29,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers /// /// Indexers in this context refer to the CLR notion of an indexer (this [string name] /// and does not overlap with the semantics of - /// . + /// . /// IEnumerable Properties { get; } diff --git a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDescriptorFactory.cs b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDescriptorFactory.cs index 521c1bbcae..dd0c5e6f40 100644 --- a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDescriptorFactory.cs +++ b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDescriptorFactory.cs @@ -7,7 +7,7 @@ using System.ComponentModel; using System.Linq; using System.Reflection; using System.Text.RegularExpressions; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Runtime.TagHelpers { diff --git a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDescriptorResolver.cs b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDescriptorResolver.cs index c17fbb8cf4..cce2bc5d58 100644 --- a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDescriptorResolver.cs +++ b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDescriptorResolver.cs @@ -7,7 +7,7 @@ using System.Diagnostics; using System.Linq; using System.Text.RegularExpressions; using Microsoft.AspNet.Razor.Parser; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Runtime.TagHelpers { diff --git a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs index 66a484b77e..f014df96e2 100644 --- a/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs +++ b/src/Microsoft.AspNet.Razor.Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs @@ -8,7 +8,7 @@ using System.Globalization; using System.IO; using System.Linq; using System.Reflection; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Runtime.TagHelpers { diff --git a/src/Microsoft.AspNet.Razor.Test.Sources/CaseSensitiveTagHelperDescriptorComparer.cs b/src/Microsoft.AspNet.Razor.Test.Sources/CaseSensitiveTagHelperDescriptorComparer.cs index a53987a695..245610ade6 100644 --- a/src/Microsoft.AspNet.Razor.Test.Sources/CaseSensitiveTagHelperDescriptorComparer.cs +++ b/src/Microsoft.AspNet.Razor.Test.Sources/CaseSensitiveTagHelperDescriptorComparer.cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; using System.Linq; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.Extensions.Internal; using Xunit; diff --git a/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperAttributeDescriptorComparer.cs b/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperAttributeDescriptorComparer.cs index 0658a5e00c..40756fa623 100644 --- a/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperAttributeDescriptorComparer.cs +++ b/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperAttributeDescriptorComparer.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.Extensions.Internal; using Xunit; diff --git a/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperAttributeDesignTimeDescriptorComparer.cs b/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperAttributeDesignTimeDescriptorComparer.cs index 5cf3c65982..3ef5d91194 100644 --- a/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperAttributeDesignTimeDescriptorComparer.cs +++ b/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperAttributeDesignTimeDescriptorComparer.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.Extensions.Internal; using Xunit; diff --git a/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperDesignTimeDescriptorComparer.cs b/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperDesignTimeDescriptorComparer.cs index 115812c7e6..142bc88507 100644 --- a/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperDesignTimeDescriptorComparer.cs +++ b/src/Microsoft.AspNet.Razor.Test.Sources/TagHelperDesignTimeDescriptorComparer.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.Extensions.Internal; using Xunit; diff --git a/src/Microsoft.AspNet.Razor/Chunks/AddTagHelperChunk.cs b/src/Microsoft.AspNet.Razor/Chunks/AddTagHelperChunk.cs index 007aa44ad5..cd10865d85 100644 --- a/src/Microsoft.AspNet.Razor/Chunks/AddTagHelperChunk.cs +++ b/src/Microsoft.AspNet.Razor/Chunks/AddTagHelperChunk.cs @@ -4,12 +4,12 @@ namespace Microsoft.AspNet.Razor.Chunks { /// - /// A used to look up s. + /// A used to look up s. /// public class AddTagHelperChunk : Chunk { /// - /// Text used to look up s. + /// Text used to look up s. /// public string LookupText { get; set; } } diff --git a/src/Microsoft.AspNet.Razor/Chunks/Generators/AddOrRemoveTagHelperChunkGenerator.cs b/src/Microsoft.AspNet.Razor/Chunks/Generators/AddOrRemoveTagHelperChunkGenerator.cs index a0d7396f69..bfc64a4ebf 100644 --- a/src/Microsoft.AspNet.Razor/Chunks/Generators/AddOrRemoveTagHelperChunkGenerator.cs +++ b/src/Microsoft.AspNet.Razor/Chunks/Generators/AddOrRemoveTagHelperChunkGenerator.cs @@ -15,7 +15,7 @@ namespace Microsoft.AspNet.Razor.Chunks.Generators /// Instantiates a new . /// /// - /// Text used to look up s that should be added or removed. + /// Text used to look up s that should be added or removed. /// public AddOrRemoveTagHelperChunkGenerator(bool removeTagHelperDescriptors, string lookupText) { @@ -24,13 +24,13 @@ namespace Microsoft.AspNet.Razor.Chunks.Generators } /// - /// Gets the text used to look up s that should be added to or + /// Gets the text used to look up s that should be added to or /// removed from the Razor page. /// public string LookupText { get; } /// - /// Whether we want to remove s from the Razor page. + /// Whether we want to remove s from the Razor page. /// /// If true generates s, /// s otherwise. diff --git a/src/Microsoft.AspNet.Razor/Chunks/Generators/TagHelperChunkGenerator.cs b/src/Microsoft.AspNet.Razor/Chunks/Generators/TagHelperChunkGenerator.cs index 3c77a46238..fbe2f28b71 100644 --- a/src/Microsoft.AspNet.Razor/Chunks/Generators/TagHelperChunkGenerator.cs +++ b/src/Microsoft.AspNet.Razor/Chunks/Generators/TagHelperChunkGenerator.cs @@ -6,7 +6,7 @@ using System.Diagnostics; using System.Linq; using Microsoft.AspNet.Razor.Parser.SyntaxTree; using Microsoft.AspNet.Razor.Parser.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Chunks.Generators { diff --git a/src/Microsoft.AspNet.Razor/Chunks/RemoveTagHelperChunk.cs b/src/Microsoft.AspNet.Razor/Chunks/RemoveTagHelperChunk.cs index 63c83c436a..6de311905b 100644 --- a/src/Microsoft.AspNet.Razor/Chunks/RemoveTagHelperChunk.cs +++ b/src/Microsoft.AspNet.Razor/Chunks/RemoveTagHelperChunk.cs @@ -4,13 +4,13 @@ namespace Microsoft.AspNet.Razor.Chunks { /// - /// A used to look up s that should be ignored + /// A used to look up s that should be ignored /// within the Razor page. /// public class RemoveTagHelperChunk : Chunk { /// - /// Text used to look up s that should be ignored within the Razor + /// Text used to look up s that should be ignored within the Razor /// page. /// public string LookupText { get; set; } diff --git a/src/Microsoft.AspNet.Razor/Chunks/TagHelperChunk.cs b/src/Microsoft.AspNet.Razor/Chunks/TagHelperChunk.cs index 5e4d6768de..fbcdd59b8c 100644 --- a/src/Microsoft.AspNet.Razor/Chunks/TagHelperChunk.cs +++ b/src/Microsoft.AspNet.Razor/Chunks/TagHelperChunk.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Chunks { diff --git a/src/Microsoft.AspNet.Razor/CodeGenerators/CSharpTagHelperCodeRenderer.cs b/src/Microsoft.AspNet.Razor/CodeGenerators/CSharpTagHelperCodeRenderer.cs index 48e4f43fd4..6bbe592c1b 100644 --- a/src/Microsoft.AspNet.Razor/CodeGenerators/CSharpTagHelperCodeRenderer.cs +++ b/src/Microsoft.AspNet.Razor/CodeGenerators/CSharpTagHelperCodeRenderer.cs @@ -9,7 +9,7 @@ using System.Linq; using Microsoft.AspNet.Razor.Chunks; using Microsoft.AspNet.Razor.CodeGenerators.Visitors; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.CodeGenerators { diff --git a/src/Microsoft.AspNet.Razor/CodeGenerators/GeneratorResults.cs b/src/Microsoft.AspNet.Razor/CodeGenerators/GeneratorResults.cs index 050c8e3e49..c9094c1948 100644 --- a/src/Microsoft.AspNet.Razor/CodeGenerators/GeneratorResults.cs +++ b/src/Microsoft.AspNet.Razor/CodeGenerators/GeneratorResults.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using Microsoft.AspNet.Razor.Chunks; using Microsoft.AspNet.Razor.Parser.SyntaxTree; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.CodeGenerators { diff --git a/src/Microsoft.AspNet.Razor/CodeGenerators/TagHelperAttributeValueCodeRenderer.cs b/src/Microsoft.AspNet.Razor/CodeGenerators/TagHelperAttributeValueCodeRenderer.cs index 4ea6ffd3d0..7af38de6b3 100644 --- a/src/Microsoft.AspNet.Razor/CodeGenerators/TagHelperAttributeValueCodeRenderer.cs +++ b/src/Microsoft.AspNet.Razor/CodeGenerators/TagHelperAttributeValueCodeRenderer.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.CodeGenerators { diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/ITagHelperDescriptorResolver.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/ITagHelperDescriptorResolver.cs similarity index 94% rename from src/Microsoft.AspNet.Razor/TagHelpers/ITagHelperDescriptorResolver.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/ITagHelperDescriptorResolver.cs index c598c6f975..7bf86b1f25 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/ITagHelperDescriptorResolver.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/ITagHelperDescriptorResolver.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// Contract used to resolve s. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperAttributeDescriptor.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperAttributeDescriptor.cs similarity index 98% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperAttributeDescriptor.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperAttributeDescriptor.cs index 8d7ee4ea18..1634e2d7d1 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperAttributeDescriptor.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperAttributeDescriptor.cs @@ -4,7 +4,7 @@ using System; using System.Reflection; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// A metadata class describing a tag helper attribute. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperAttributeDesignTimeDescriptor.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperAttributeDesignTimeDescriptor.cs similarity index 91% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperAttributeDesignTimeDescriptor.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperAttributeDesignTimeDescriptor.cs index 5135eb3796..29298cac99 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperAttributeDesignTimeDescriptor.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperAttributeDesignTimeDescriptor.cs @@ -1,7 +1,7 @@ // 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. -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// A metadata class containing information about tag helper use. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptor.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptor.cs similarity index 99% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptor.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptor.cs index f4e58acff1..276bcf96a1 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptor.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptor.cs @@ -6,7 +6,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// A metadata class describing a tag helper. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorComparer.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorComparer.cs similarity index 98% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorComparer.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorComparer.cs index 4d09b48bce..62f57d9e9f 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorComparer.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorComparer.cs @@ -6,7 +6,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.Extensions.Internal; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// An used to check equality between diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorProvider.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorProvider.cs similarity index 99% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorProvider.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorProvider.cs index 4506e4f6da..f50a63f007 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorProvider.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorProvider.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using System.Linq; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// Enables retrieval of 's. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorResolutionContext.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorResolutionContext.cs similarity index 97% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorResolutionContext.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorResolutionContext.cs index 67ec4d99a7..880f6c937e 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDescriptorResolutionContext.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDescriptorResolutionContext.cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// Contains information needed to resolve s. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDesignTimeDescriptor.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDesignTimeDescriptor.cs similarity index 94% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDesignTimeDescriptor.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDesignTimeDescriptor.cs index 3e91d0a461..5cdff88a41 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDesignTimeDescriptor.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDesignTimeDescriptor.cs @@ -1,7 +1,7 @@ // 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. -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// A metadata class containing design time information about a tag helper. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDirectiveDescriptor.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDirectiveDescriptor.cs similarity index 95% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDirectiveDescriptor.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDirectiveDescriptor.cs index 140f39d23c..b372457b03 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDirectiveDescriptor.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDirectiveDescriptor.cs @@ -3,7 +3,7 @@ using System; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// Contains information needed to resolve s. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDirectiveType.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDirectiveType.cs similarity index 91% rename from src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDirectiveType.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDirectiveType.cs index 5ca2a910c1..d2cec61c63 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TagHelperDirectiveType.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TagHelperDirectiveType.cs @@ -1,7 +1,7 @@ // 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. -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// The type of tag helper directive. diff --git a/src/Microsoft.AspNet.Razor/TagHelpers/TypeBasedTagHelperDescriptorComparer.cs b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TypeBasedTagHelperDescriptorComparer.cs similarity index 97% rename from src/Microsoft.AspNet.Razor/TagHelpers/TypeBasedTagHelperDescriptorComparer.cs rename to src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TypeBasedTagHelperDescriptorComparer.cs index 265121463f..d89e54ad7b 100644 --- a/src/Microsoft.AspNet.Razor/TagHelpers/TypeBasedTagHelperDescriptorComparer.cs +++ b/src/Microsoft.AspNet.Razor/Compilation/TagHelpers/TypeBasedTagHelperDescriptorComparer.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using Microsoft.Extensions.Internal; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { /// /// An that checks equality between two diff --git a/src/Microsoft.AspNet.Razor/Parser/ParserContext.cs b/src/Microsoft.AspNet.Razor/Parser/ParserContext.cs index 853c2fd395..d08697aefa 100644 --- a/src/Microsoft.AspNet.Razor/Parser/ParserContext.cs +++ b/src/Microsoft.AspNet.Razor/Parser/ParserContext.cs @@ -9,7 +9,7 @@ using System.Globalization; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNet.Razor.Parser.SyntaxTree; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Text; using Microsoft.AspNet.Razor.Utils; diff --git a/src/Microsoft.AspNet.Razor/Parser/RazorParser.cs b/src/Microsoft.AspNet.Razor/Parser/RazorParser.cs index 95a3ee89fe..03fddef087 100644 --- a/src/Microsoft.AspNet.Razor/Parser/RazorParser.cs +++ b/src/Microsoft.AspNet.Razor/Parser/RazorParser.cs @@ -11,7 +11,7 @@ using System.Threading.Tasks; using Microsoft.AspNet.Razor.Parser.SyntaxTree; using Microsoft.AspNet.Razor.Parser.TagHelpers; using Microsoft.AspNet.Razor.Parser.TagHelpers.Internal; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Text; namespace Microsoft.AspNet.Razor.Parser diff --git a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlock.cs b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlock.cs index a2102d7f55..3962d48c67 100644 --- a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlock.cs +++ b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlock.cs @@ -7,7 +7,7 @@ using System.Globalization; using System.Linq; using Microsoft.AspNet.Razor.Parser.SyntaxTree; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.Extensions.Internal; namespace Microsoft.AspNet.Razor.Parser.TagHelpers diff --git a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlockBuilder.cs b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlockBuilder.cs index 2d3f8bf506..032ac53979 100644 --- a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlockBuilder.cs +++ b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlockBuilder.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using Microsoft.AspNet.Razor.Chunks.Generators; using Microsoft.AspNet.Razor.Parser.SyntaxTree; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Parser.TagHelpers { diff --git a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlockRewriter.cs b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlockRewriter.cs index b7763cc7e0..0ed73e343f 100644 --- a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlockRewriter.cs +++ b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperBlockRewriter.cs @@ -8,7 +8,7 @@ using System.Linq; using Microsoft.AspNet.Razor.Chunks.Generators; using Microsoft.AspNet.Razor.Parser.SyntaxTree; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Tokenizer.Symbols; namespace Microsoft.AspNet.Razor.Parser.TagHelpers.Internal diff --git a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperDirectiveSpanVisitor.cs b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperDirectiveSpanVisitor.cs index 5f1c415699..ad7cee68a1 100644 --- a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperDirectiveSpanVisitor.cs +++ b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperDirectiveSpanVisitor.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using Microsoft.AspNet.Razor.Chunks.Generators; using Microsoft.AspNet.Razor.Parser.SyntaxTree; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Parser.TagHelpers { diff --git a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperParseTreeRewriter.cs b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperParseTreeRewriter.cs index 80e4bad2be..bff7a03214 100644 --- a/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperParseTreeRewriter.cs +++ b/src/Microsoft.AspNet.Razor/Parser/TagHelpers/TagHelperParseTreeRewriter.cs @@ -7,7 +7,7 @@ using System.Diagnostics; using System.Linq; using Microsoft.AspNet.Razor.Parser.SyntaxTree; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Tokenizer.Symbols; namespace Microsoft.AspNet.Razor.Parser.TagHelpers.Internal diff --git a/src/Microsoft.AspNet.Razor/ParserResults.cs b/src/Microsoft.AspNet.Razor/ParserResults.cs index 799e210795..d7822937f1 100644 --- a/src/Microsoft.AspNet.Razor/ParserResults.cs +++ b/src/Microsoft.AspNet.Razor/ParserResults.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using System.Linq; using Microsoft.AspNet.Razor.Parser.SyntaxTree; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor { diff --git a/src/Microsoft.AspNet.Razor/RazorEngineHost.cs b/src/Microsoft.AspNet.Razor/RazorEngineHost.cs index 93783b6ba5..3274ff7500 100644 --- a/src/Microsoft.AspNet.Razor/RazorEngineHost.cs +++ b/src/Microsoft.AspNet.Razor/RazorEngineHost.cs @@ -7,7 +7,7 @@ using System.Diagnostics.CodeAnalysis; using Microsoft.AspNet.Razor.Chunks.Generators; using Microsoft.AspNet.Razor.CodeGenerators; using Microsoft.AspNet.Razor.Parser; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor { diff --git a/test/Microsoft.AspNet.Razor.Runtime.Precompilation.Test/CompilationUtility.cs b/test/Microsoft.AspNet.Razor.Runtime.Precompilation.Test/CompilationUtility.cs index 73431f234d..4e28556364 100644 --- a/test/Microsoft.AspNet.Razor.Runtime.Precompilation.Test/CompilationUtility.cs +++ b/test/Microsoft.AspNet.Razor.Runtime.Precompilation.Test/CompilationUtility.cs @@ -21,7 +21,7 @@ namespace Microsoft.AspNet.Razor.Runtime.Precompilation private static readonly Assembly ExecutingAssembly = typeof(CompilationUtility).GetTypeInfo().Assembly; public static readonly string GeneratedAssemblyName = Path.GetRandomFileName() + "." + Path.GetRandomFileName(); - public static Compilation GetCompilation(params string[] resourceFiles) + public static CodeAnalysis.Compilation GetCompilation(params string[] resourceFiles) { var assemblyVersion = ExecutingAssembly.GetName().Version; diff --git a/test/Microsoft.AspNet.Razor.Runtime.Precompilation.Test/PrecompilationTagHelperDescriptorFactoryTest.cs b/test/Microsoft.AspNet.Razor.Runtime.Precompilation.Test/PrecompilationTagHelperDescriptorFactoryTest.cs index 436307b06a..de560d0c59 100644 --- a/test/Microsoft.AspNet.Razor.Runtime.Precompilation.Test/PrecompilationTagHelperDescriptorFactoryTest.cs +++ b/test/Microsoft.AspNet.Razor.Runtime.Precompilation.Test/PrecompilationTagHelperDescriptorFactoryTest.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using System.Linq; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Test.Internal; using Xunit; diff --git a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/RuntimeTagHelperDescriptorFactoryTest.cs b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/RuntimeTagHelperDescriptorFactoryTest.cs index 4335f09df4..bbee7fff03 100644 --- a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/RuntimeTagHelperDescriptorFactoryTest.cs +++ b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/RuntimeTagHelperDescriptorFactoryTest.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using System.Linq; using System.Reflection; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Test.Internal; using Xunit; diff --git a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDescriptorFactoryTest.cs b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDescriptorFactoryTest.cs index 8d46aba19a..8f80b8fa0c 100644 --- a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDescriptorFactoryTest.cs +++ b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDescriptorFactoryTest.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using System.Linq; using System.Reflection; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Test.Internal; using Xunit; diff --git a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDescriptorResolverTest.cs b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDescriptorResolverTest.cs index d5caac40c1..9fd4440130 100644 --- a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDescriptorResolverTest.cs +++ b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDescriptorResolverTest.cs @@ -6,7 +6,7 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; using Microsoft.AspNet.Razor.Parser; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Test.Internal; using Xunit; diff --git a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDesignTimeDescriptorFactoryTest.cs b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDesignTimeDescriptorFactoryTest.cs index fa7d09991f..7fe34e49ed 100644 --- a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDesignTimeDescriptorFactoryTest.cs +++ b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperDesignTimeDescriptorFactoryTest.cs @@ -5,7 +5,7 @@ using System; using System.IO; using System.Reflection; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Test.Internal; using Microsoft.AspNet.Testing; using Moq; diff --git a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperScopeManagerTest.cs b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperScopeManagerTest.cs index fefba884b4..aff9500154 100644 --- a/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperScopeManagerTest.cs +++ b/test/Microsoft.AspNet.Razor.Runtime.Test/TagHelpers/TagHelperScopeManagerTest.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Xunit; namespace Microsoft.AspNet.Razor.Runtime.Test.TagHelpers diff --git a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/CSharpTagHelperRenderingTest.cs b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/CSharpTagHelperRenderingTest.cs index b57dd97130..dc3744075a 100644 --- a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/CSharpTagHelperRenderingTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/CSharpTagHelperRenderingTest.cs @@ -9,7 +9,7 @@ using System.Reflection; #endif using Microsoft.AspNet.Razor.CodeGenerators; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Xunit; namespace Microsoft.AspNet.Razor.Test.Generator diff --git a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/CSharpTagHelperRenderingUnitTest.cs b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/CSharpTagHelperRenderingUnitTest.cs index f058742868..62f237ab67 100644 --- a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/CSharpTagHelperRenderingUnitTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/CSharpTagHelperRenderingUnitTest.cs @@ -7,7 +7,7 @@ using Microsoft.AspNet.Razor.CodeGenerators.Visitors; using Microsoft.AspNet.Razor.Parser.SyntaxTree; using Microsoft.AspNet.Razor.Parser.TagHelpers; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Xunit; namespace Microsoft.AspNet.Razor.Test.Generator diff --git a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/RazorCommentChunkGeneratorTest.cs b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/RazorCommentChunkGeneratorTest.cs index 30f1df927a..82c3177cd1 100644 --- a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/RazorCommentChunkGeneratorTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/RazorCommentChunkGeneratorTest.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Xunit; namespace Microsoft.AspNet.Razor.Chunks.Generators diff --git a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/TagHelperAttributeValueCodeRendererTest.cs b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/TagHelperAttributeValueCodeRendererTest.cs index 78e57b7785..196d059c58 100644 --- a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/TagHelperAttributeValueCodeRendererTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/TagHelperAttributeValueCodeRendererTest.cs @@ -8,7 +8,7 @@ using System.Reflection; using Microsoft.AspNet.Razor.CodeGenerators; using Microsoft.AspNet.Razor.CodeGenerators.Visitors; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Xunit; namespace Microsoft.AspNet.Razor.Test.Generator diff --git a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/TagHelperTestBase.cs b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/TagHelperTestBase.cs index a697336306..0e3f890d96 100644 --- a/test/Microsoft.AspNet.Razor.Test/CodeGenerators/TagHelperTestBase.cs +++ b/test/Microsoft.AspNet.Razor.Test/CodeGenerators/TagHelperTestBase.cs @@ -7,7 +7,7 @@ using System.Linq; using Microsoft.AspNet.Razor.CodeGenerators; using Microsoft.AspNet.Razor.CodeGenerators.Visitors; using Microsoft.AspNet.Razor.Parser; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; namespace Microsoft.AspNet.Razor.Test.Generator { diff --git a/test/Microsoft.AspNet.Razor.Test/Parser/ParserVisitorExtensionsTest.cs b/test/Microsoft.AspNet.Razor.Test/Parser/ParserVisitorExtensionsTest.cs index 4f1498f50d..72a0e85687 100644 --- a/test/Microsoft.AspNet.Razor.Test/Parser/ParserVisitorExtensionsTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/Parser/ParserVisitorExtensionsTest.cs @@ -6,7 +6,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.AspNet.Razor.Parser; using Microsoft.AspNet.Razor.Parser.SyntaxTree; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Moq; using Xunit; diff --git a/test/Microsoft.AspNet.Razor.Test/Parser/RazorParserTest.cs b/test/Microsoft.AspNet.Razor.Test/Parser/RazorParserTest.cs index 5bda3fd3e9..f45d2b173d 100644 --- a/test/Microsoft.AspNet.Razor.Test/Parser/RazorParserTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/Parser/RazorParserTest.cs @@ -7,7 +7,7 @@ using System.IO; using System.Linq; using Microsoft.AspNet.Razor.Parser; using Microsoft.AspNet.Razor.Parser.SyntaxTree; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Test.Framework; #if !DNXCORE50 using Moq; diff --git a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperBlockRewriterTest.cs b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperBlockRewriterTest.cs index cd64e29c8c..d379e6f0c9 100644 --- a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperBlockRewriterTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperBlockRewriterTest.cs @@ -14,7 +14,7 @@ using Microsoft.AspNet.Razor.Test.TagHelpers; using Microsoft.AspNet.Razor.Text; using Xunit; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { public class TagHelperBlockRewriterTest : TagHelperRewritingTestBase { diff --git a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDescriptorProviderTest.cs b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDescriptorProviderTest.cs index 899bfe1741..763fa88428 100644 --- a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDescriptorProviderTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDescriptorProviderTest.cs @@ -7,7 +7,7 @@ using Microsoft.AspNet.Razor.Runtime.TagHelpers; using Microsoft.AspNet.Razor.Test.Internal; using Xunit; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { public class TagHelperDescriptorProviderTest { diff --git a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDescriptorTest.cs b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDescriptorTest.cs index f5a94afc79..2ac226ba6a 100644 --- a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDescriptorTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDescriptorTest.cs @@ -8,7 +8,7 @@ using Microsoft.AspNet.Razor.Test.Internal; using Newtonsoft.Json; using Xunit; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { public class TagHelperDescriptorTest { diff --git a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDirectiveSpanVisitorTest.cs b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDirectiveSpanVisitorTest.cs index f0565164b6..db0b78973c 100644 --- a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDirectiveSpanVisitorTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperDirectiveSpanVisitorTest.cs @@ -14,7 +14,7 @@ using Moq; #endif using Xunit; -namespace Microsoft.AspNet.Razor.TagHelpers +namespace Microsoft.AspNet.Razor.Compilation.TagHelpers { public class TagHelperDirectiveSpanVisitorTest { diff --git a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperParseTreeRewriterTest.cs b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperParseTreeRewriterTest.cs index e2098c204c..13606e4808 100644 --- a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperParseTreeRewriterTest.cs +++ b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperParseTreeRewriterTest.cs @@ -9,7 +9,7 @@ using Microsoft.AspNet.Razor.Chunks.Generators; using Microsoft.AspNet.Razor.Parser; using Microsoft.AspNet.Razor.Parser.SyntaxTree; using Microsoft.AspNet.Razor.Runtime.TagHelpers; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Test.Framework; using Microsoft.AspNet.Razor.Text; using Xunit; diff --git a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperRewritingTestBase.cs b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperRewritingTestBase.cs index d796459d90..0163bf9458 100644 --- a/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperRewritingTestBase.cs +++ b/test/Microsoft.AspNet.Razor.Test/TagHelpers/TagHelperRewritingTestBase.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.AspNet.Razor.Parser; using Microsoft.AspNet.Razor.Parser.TagHelpers.Internal; -using Microsoft.AspNet.Razor.TagHelpers; +using Microsoft.AspNet.Razor.Compilation.TagHelpers; using Microsoft.AspNet.Razor.Test.Framework; using Microsoft.AspNet.Razor.Text; using Microsoft.AspNet.Razor.Tokenizer;