view Source/TypeBuilder/Builders/TypeBuilderConsts.cs @ 8:a34cfdde80d6

removed strong signing added FrameworkPathOverride for linux builds
author cin
date Wed, 29 Nov 2017 12:43:52 +0300
parents f990fcb411a9
children
line wrap: on
line source

namespace BLToolkit.TypeBuilder.Builders
{
	public static class TypeBuilderConsts
	{
		public static class Priority
		{
			public const int Low              = int.MinValue / 2;
			public const int Normal           = 0;
			public const int High             = int.MaxValue / 2;

			public const int NotNullAspect    = High;
			public const int OverloadAspect   = High;
			public const int AsyncAspect      = Normal;
			public const int ClearCacheAspect = Normal;
			public const int LoggingAspect    = Normal;
			public const int CacheAspect      = Low;
			public const int DataAccessor     = Low;
			public const int PropChange       = int.MinValue + 1000000;
		}

		public const string AssemblyNameSuffix = "TypeBuilder";
	}
}