- Move the registration of configs into the factory - Moved extension methods of ModelsMode into Umbraco.Core - Removed references to Umbraco.Configuration from Umbraco.Infrastructure and Umbraco.ModelsBuilder.Embedded
18 lines
405 B
C#
18 lines
405 B
C#
namespace Umbraco.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines constants.
|
|
/// </summary>
|
|
public static partial class Constants
|
|
{
|
|
/// <summary>
|
|
/// Defines constants for ModelsBuilder.
|
|
/// </summary>
|
|
public static class ModelsBuilder
|
|
{
|
|
|
|
public const string DefaultModelsNamespace = "Umbraco.Web.PublishedModels";
|
|
}
|
|
}
|
|
}
|