* Remove RuntimeLevelAttribute & disable filtering * Remove RuntimeLevelAttribute usage on Composers * Fix broken tests * Resolve UserManager registration issues. * Turn container validation back on. * Resolve lifetime issue post install backoffice. * Remove final TODO: MSDI
12 lines
304 B
C#
12 lines
304 B
C#
using Umbraco.Core;
|
|
using Umbraco.Core.Composing;
|
|
|
|
namespace Umbraco.Web.Compose
|
|
{
|
|
/// <summary>
|
|
/// A composer for nested content to run a component
|
|
/// </summary>
|
|
public class NestedContentPropertyComposer : ComponentComposer<NestedContentPropertyComponent>, ICoreComposer
|
|
{ }
|
|
}
|