Files
Umbraco-CMS/src/Umbraco.Tests/CodeFirst/PluginManagerExtensions.cs
2012-11-30 15:01:52 -01:00

17 lines
458 B
C#

using System;
using System.Collections.Generic;
using Umbraco.Core;
namespace Umbraco.Tests.CodeFirst
{
/// <summary>
/// Used for TypeInheritanceTest and CodeFirstTests
/// </summary>
internal static class PluginManagerExtensions
{
public static IEnumerable<Type> ResolveContentTypeBaseTypes(this PluginManager resolver)
{
return resolver.ResolveTypes<ContentTypeBase>();
}
}
}