dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System Attribute.cs, 1.8, 1.


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System Attribute.cs, 1.8, 1.9 AttributeUsageAttribute.cs, 1.2, 1.3 CLSCompliantAttribute.cs, 1.2, 1.3 FlagsAttribute.cs, 1.2, 1.3 ObsoleteAttribute.cs, 1.4, 1.5 ParamArrayAttribute.cs, 1.3, 1.4
Date: Thu, 04 Sep 2003 00:47:16 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System
In directory subversions:/tmp/cvs-serv20104/runtime/System

Modified Files:
        Attribute.cs AttributeUsageAttribute.cs 
        CLSCompliantAttribute.cs FlagsAttribute.cs 
        ObsoleteAttribute.cs ParamArrayAttribute.cs 
Log Message:


Signature-compatibility fixes for "AttributeUsage" declarations.


Index: Attribute.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Attribute.cs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** Attribute.cs        15 Apr 2003 11:22:32 -0000      1.8
--- Attribute.cs        4 Sep 2003 04:47:13 -0000       1.9
***************
*** 24,28 ****
  using System.Reflection;
  
! [AttributeUsage(AttributeTargets.All, AllowMultiple=false, Inherited=true)]
  public abstract class Attribute
  {
--- 24,28 ----
  using System.Reflection;
  
! [AttributeUsage(AttributeTargets.All, Inherited=true, AllowMultiple=false)]
  public abstract class Attribute
  {

Index: AttributeUsageAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/AttributeUsageAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** AttributeUsageAttribute.cs  7 Dec 2001 01:45:38 -0000       1.2
--- AttributeUsageAttribute.cs  4 Sep 2003 04:47:13 -0000       1.3
***************
*** 23,27 ****
  {
  
! [AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]
  public sealed class AttributeUsageAttribute : Attribute
  {
--- 23,27 ----
  {
  
! [AttributeUsage(AttributeTargets.Class, Inherited=true)]
  public sealed class AttributeUsageAttribute : Attribute
  {

Index: CLSCompliantAttribute.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/CLSCompliantAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CLSCompliantAttribute.cs    7 Dec 2001 01:45:38 -0000       1.2
--- CLSCompliantAttribute.cs    4 Sep 2003 04:47:13 -0000       1.3
***************
*** 23,27 ****
  {
  
! [AttributeUsage(AttributeTargets.All, AllowMultiple=false, Inherited=true)]
  public sealed class CLSCompliantAttribute : Attribute
  {
--- 23,27 ----
  {
  
! [AttributeUsage(AttributeTargets.All, Inherited=true, AllowMultiple=false)]
  public sealed class CLSCompliantAttribute : Attribute
  {

Index: FlagsAttribute.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/FlagsAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** FlagsAttribute.cs   7 Dec 2001 01:45:38 -0000       1.2
--- FlagsAttribute.cs   4 Sep 2003 04:47:13 -0000       1.3
***************
*** 23,27 ****
  {
  
! [AttributeUsage(AttributeTargets.Enum, AllowMultiple=false, Inherited=false)]
  public class FlagsAttribute : Attribute
  {
--- 23,27 ----
  {
  
! [AttributeUsage(AttributeTargets.Enum, Inherited=false)]
  public class FlagsAttribute : Attribute
  {

Index: ObsoleteAttribute.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/ObsoleteAttribute.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** ObsoleteAttribute.cs        7 Dec 2001 01:45:38 -0000       1.4
--- ObsoleteAttribute.cs        4 Sep 2003 04:47:13 -0000       1.5
***************
*** 33,37 ****
                                AttributeTargets.Interface |
                                AttributeTargets.Delegate,
!                               AllowMultiple=false, Inherited=false)]
  public sealed class ObsoleteAttribute : Attribute
  {
--- 33,37 ----
                                AttributeTargets.Interface |
                                AttributeTargets.Delegate,
!                               Inherited=false)]
  public sealed class ObsoleteAttribute : Attribute
  {

Index: ParamArrayAttribute.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/ParamArrayAttribute.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** ParamArrayAttribute.cs      21 Nov 2002 01:17:13 -0000      1.3
--- ParamArrayAttribute.cs      4 Sep 2003 04:47:13 -0000       1.4
***************
*** 24,28 ****
  
  [AttributeUsage(AttributeTargets.Parameter,
!                               AllowMultiple=false, Inherited=true)]
  public sealed class ParamArrayAttribute : Attribute
  {
--- 24,28 ----
  
  [AttributeUsage(AttributeTargets.Parameter,
!                               Inherited=true, AllowMultiple=false)]
  public sealed class ParamArrayAttribute : Attribute
  {





reply via email to

[Prev in Thread] Current Thread [Next in Thread]