Moved VCTHDFactory to .Internal namespace

This commit is contained in:
Ajay Bhargav Baaskaran 2016-09-16 15:50:44 -07:00
parent 5ad5f7a3f9
commit b3fe8b30ac
2 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@ using Microsoft.AspNetCore.Mvc.ViewComponents;
using Microsoft.AspNetCore.Razor.Compilation.TagHelpers; using Microsoft.AspNetCore.Razor.Compilation.TagHelpers;
using Microsoft.AspNetCore.Razor.Runtime.TagHelpers; using Microsoft.AspNetCore.Razor.Runtime.TagHelpers;
namespace Microsoft.AspNetCore.Mvc.Razor namespace Microsoft.AspNetCore.Mvc.Razor.Internal
{ {
/// <summary> /// <summary>
/// Provides methods to create tag helper representations of view components. /// Provides methods to create tag helper representations of view components.

View File

@ -5,11 +5,12 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Reflection; using System.Reflection;
using Microsoft.AspNetCore.Mvc.Razor.Host; using Microsoft.AspNetCore.Mvc.Razor.Host;
using Microsoft.AspNetCore.Mvc.Razor.Internal;
using Microsoft.AspNetCore.Mvc.ViewComponents; using Microsoft.AspNetCore.Mvc.ViewComponents;
using Microsoft.AspNetCore.Razor.Compilation.TagHelpers; using Microsoft.AspNetCore.Razor.Compilation.TagHelpers;
using Xunit; using Xunit;
namespace Microsoft.AspNetCore.Mvc.Razor.Test.ViewComponentTagHelpers namespace Microsoft.AspNetCore.Mvc.Razor.Test.Internal
{ {
public class ViewComponentTagHelperDescriptorFactoryTest public class ViewComponentTagHelperDescriptorFactoryTest
{ {