Moved VCTHDFactory to .Internal namespace
This commit is contained in:
parent
5ad5f7a3f9
commit
b3fe8b30ac
|
|
@ -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.
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
Loading…
Reference in New Issue