Update of /cvsroot/netreflector/NetReflector/src/NetReflector/attributes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6408/src/NetReflector/attributes
Modified Files:
ReflectorPropertyAttribute.cs
Log Message:
attempting to fix long standing broken build by sorting members
Index: ReflectorPropertyAttribute.cs
===================================================================
RCS file: /cvsroot/netreflector/NetReflector/src/NetReflector/attributes/ReflectorPropertyAttribute.cs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** ReflectorPropertyAttribute.cs 8 Sep 2005 02:03:18 -0000 1.8
--- ReflectorPropertyAttribute.cs 8 Sep 2005 03:47:09 -0000 1.9
***************
*** 6,10 ****
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = true, AllowMultiple = false)]
! public class ReflectorPropertyAttribute : Attribute, IReflectorAttribute
{
private string name;
--- 6,11 ----
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = true, AllowMultiple = false)]
! public class
! ReflectorPropertyAttribute : Attribute, IReflectorAttribute
{
private string name;
***************
*** 66,75 ****
return (attributes.Length == 0) ? null : (ReflectorPropertyAttribute)attributes[0];
}
-
- public ISerialiserFactory SerialiserFactory
- {
- get { return factory; }
- set { factory = value; }
- }
}
}
\ No newline at end of file
--- 67,70 ----
|