2021-02-18 11:06:02 +01:00
|
|
|
|
namespace Umbraco.Cms.Core
|
2017-12-14 17:04:44 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Defines constants.
|
|
|
|
|
|
/// </summary>
|
2019-11-05 13:45:42 +01:00
|
|
|
|
public static partial class Constants
|
2017-12-14 17:04:44 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Defines constants for composition.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static class Composing
|
2021-04-06 18:46:38 +02:00
|
|
|
|
{
|
|
|
|
|
|
public static readonly string[] UmbracoCoreAssemblyNames = new[]
|
|
|
|
|
|
{
|
|
|
|
|
|
"Umbraco.Core",
|
|
|
|
|
|
"Umbraco.Infrastructure",
|
|
|
|
|
|
"Umbraco.PublishedCache.NuCache",
|
|
|
|
|
|
"Umbraco.Examine.Lucene",
|
|
|
|
|
|
"Umbraco.Web.Common",
|
|
|
|
|
|
"Umbraco.Web.BackOffice",
|
|
|
|
|
|
"Umbraco.Web.Website",
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
2017-12-14 17:04:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|