1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #region Apache License
- #endregion
- #if !NETCF
- using System;
- namespace log4net.Config
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [AttributeUsage(AttributeTargets.Assembly,AllowMultiple=true)]
- [Serializable]
- [Obsolete("Use AliasRepositoryAttribute instead of AliasDomainAttribute")]
- public sealed class AliasDomainAttribute : AliasRepositoryAttribute
- {
- #region Public Instance Constructors
-
-
-
-
-
-
-
-
-
-
- public AliasDomainAttribute(string name) : base(name)
- {
- }
- #endregion Public Instance Constructors
- }
- }
- #endif // !NETCF
|