Merged Umbraco.Abstractions into Umbraco.Core
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface IActiveDirectorySettings
|
||||
{
|
||||
string ActiveDirectoryDomain { get; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface IExceptionFilterSettings
|
||||
{
|
||||
bool Disabled { get; }
|
||||
}
|
||||
}
|
||||
7
src/Umbraco.Core/Configuration/IIndexCreatorSettings.cs
Normal file
7
src/Umbraco.Core/Configuration/IIndexCreatorSettings.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface IIndexCreatorSettings
|
||||
{
|
||||
string LuceneDirectoryFactory { get; }
|
||||
}
|
||||
}
|
||||
15
src/Umbraco.Core/Configuration/IModelsBuilderConfig.cs
Normal file
15
src/Umbraco.Core/Configuration/IModelsBuilderConfig.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface IModelsBuilderConfig
|
||||
{
|
||||
bool Enable { get; }
|
||||
bool AcceptUnsafeModelsDirectory { get; }
|
||||
int DebugLevel { get; }
|
||||
bool EnableFactory { get; }
|
||||
bool FlagOutOfDateModels { get; }
|
||||
bool IsDebug { get; }
|
||||
string ModelsDirectory { get; }
|
||||
ModelsMode ModelsMode { get; }
|
||||
string ModelsNamespace { get; }
|
||||
}
|
||||
}
|
||||
7
src/Umbraco.Core/Configuration/INuCacheSettings.cs
Normal file
7
src/Umbraco.Core/Configuration/INuCacheSettings.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface INuCacheSettings
|
||||
{
|
||||
string BTreeBlockSize { get; }
|
||||
}
|
||||
}
|
||||
8
src/Umbraco.Core/Configuration/IRuntimeSettings.cs
Normal file
8
src/Umbraco.Core/Configuration/IRuntimeSettings.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface IRuntimeSettings
|
||||
{
|
||||
int? MaxQueryStringLength { get; }
|
||||
int? MaxRequestLength { get; }
|
||||
}
|
||||
}
|
||||
7
src/Umbraco.Core/Configuration/ITypeFinderSettings.cs
Normal file
7
src/Umbraco.Core/Configuration/ITypeFinderSettings.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
public interface ITypeFinderSettings
|
||||
{
|
||||
string AssembliesAcceptingLoadExceptions { get; }
|
||||
}
|
||||
}
|
||||
36
src/Umbraco.Core/Configuration/ModelsMode.cs
Normal file
36
src/Umbraco.Core/Configuration/ModelsMode.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
namespace Umbraco.Core.Configuration
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the models generation modes.
|
||||
/// </summary>
|
||||
public enum ModelsMode
|
||||
{
|
||||
/// <summary>
|
||||
/// Do not generate models.
|
||||
/// </summary>
|
||||
Nothing = 0, // default value
|
||||
|
||||
/// <summary>
|
||||
/// Generate models in memory.
|
||||
/// When: a content type change occurs.
|
||||
/// </summary>
|
||||
/// <remarks>The app does not restart. Models are available in views exclusively.</remarks>
|
||||
PureLive,
|
||||
|
||||
/// <summary>
|
||||
/// Generate models in AppData.
|
||||
/// When: generation is triggered.
|
||||
/// </summary>
|
||||
/// <remarks>Generation can be triggered from the dashboard. The app does not restart.
|
||||
/// Models are not compiled and thus are not available to the project.</remarks>
|
||||
AppData,
|
||||
|
||||
/// <summary>
|
||||
/// Generate models in AppData.
|
||||
/// When: a content type change occurs, or generation is triggered.
|
||||
/// </summary>
|
||||
/// <remarks>Generation can be triggered from the dashboard. The app does not restart.
|
||||
/// Models are not compiled and thus are not available to the project.</remarks>
|
||||
LiveAppData
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user