Moving classes to Infrastructure proj

This commit is contained in:
Elitsa Marinovska
2021-02-18 08:14:27 +01:00
parent 88acb07873
commit e74836cb48
21 changed files with 52 additions and 62 deletions

View File

@@ -0,0 +1,23 @@
using System;
namespace Umbraco.Infrastructure.ModelsBuilder
{
/// <summary>
/// Indicates that an Assembly is a Models Builder assembly.
/// </summary>
[AttributeUsage(AttributeTargets.Assembly /*, AllowMultiple = false, Inherited = false*/)]
public sealed class ModelsBuilderAssemblyAttribute : Attribute
{
/// <summary>
/// Gets or sets a value indicating whether the assembly is a PureLive assembly.
/// </summary>
/// <remarks>A Models Builder assembly can be either PureLive or normal Dll.</remarks>
public bool PureLive { get; set; }
/// <summary>
/// Gets or sets a hash value representing the state of the custom source code files
/// and the Umbraco content types that were used to generate and compile the assembly.
/// </summary>
public string SourceHash { get; set; }
}
}