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

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

[Dotgnu-pnet-commits] CVS: pnetlib/System/ComponentModel/Design/Seriali


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System/ComponentModel/Design/Serialization ContextStack.cs,1.1,1.2 DesignerLoader.cs,1.1,1.2 DesignerSerializerAttribute.cs,1.2,1.3 IDesignerLoaderHost.cs,1.1,1.2 IDesignerLoaderService.cs,1.2,1.3 IDesignerSerializationManager.cs,1.1,1.2 IDesignerSerializationProvider.cs,1.1,1.2 IDesignerSerializationService.cs,1.1,1.2 INameCreationService.cs,1.1,1.2 InstanceDescriptor.cs,1.1,1.2 ResolveNameEventArgs.cs,1.1,1.2 ResolveNameEventHandler.cs,1.1,1.2 RootDesignerSerializerAttribute.cs,1.2,1.3
Date: Thu, 29 May 2003 01:38:20 -0400

Update of 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization
In directory 
subversions:/tmp/cvs-serv17776/System/ComponentModel/Design/Serialization

Modified Files:
        ContextStack.cs DesignerLoader.cs 
        DesignerSerializerAttribute.cs IDesignerLoaderHost.cs 
        IDesignerLoaderService.cs IDesignerSerializationManager.cs 
        IDesignerSerializationProvider.cs 
        IDesignerSerializationService.cs INameCreationService.cs 
        InstanceDescriptor.cs ResolveNameEventArgs.cs 
        ResolveNameEventHandler.cs RootDesignerSerializerAttribute.cs 
Log Message:


Add new profile options - CONFIG_EXTENDED_DIAGNOSTICS,
CONFIG_COMPONENT_MODEL, CONFIG_COMPONENT_MODEL_DESIGN,
CONFIG_ISOLATED_STORAGE.


Index: ContextStack.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/ContextStack.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ContextStack.cs     24 May 2003 00:42:35 -0000      1.1
--- ContextStack.cs     29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public sealed class ContextStack
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  public sealed class ContextStack
***************
*** 124,128 ****
  }; // class ContextStack
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 124,128 ----
  }; // class ContextStack
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: DesignerLoader.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/DesignerLoader.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** DesignerLoader.cs   24 May 2003 00:42:35 -0000      1.1
--- DesignerLoader.cs   29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public abstract class DesignerLoader
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  public abstract class DesignerLoader
***************
*** 54,58 ****
  }; // class DesignerLoader
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 54,58 ----
  }; // class DesignerLoader
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: DesignerSerializerAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/DesignerSerializerAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** DesignerSerializerAttribute.cs      24 May 2003 06:04:25 -0000      1.2
--- DesignerSerializerAttribute.cs      29 May 2003 05:38:18 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface,
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface,
***************
*** 81,85 ****
  }; // class DesignerSerializerAttribute
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 81,85 ----
  }; // class DesignerSerializerAttribute
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: IDesignerLoaderHost.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/IDesignerLoaderHost.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IDesignerLoaderHost.cs      24 May 2003 00:42:35 -0000      1.1
--- IDesignerLoaderHost.cs      29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  using System.Collections;
***************
*** 39,43 ****
  }; // interface IDesignerLoaderHost
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 39,43 ----
  }; // interface IDesignerLoaderHost
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: IDesignerLoaderService.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/IDesignerLoaderService.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** IDesignerLoaderService.cs   24 May 2003 06:04:25 -0000      1.2
--- IDesignerLoaderService.cs   29 May 2003 05:38:18 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  using System.Collections;
***************
*** 40,44 ****
  }; // interface IDesignerLoaderService
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 40,44 ----
  }; // interface IDesignerLoaderService
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: IDesignerSerializationManager.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/IDesignerSerializationManager.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IDesignerSerializationManager.cs    24 May 2003 00:42:35 -0000      1.1
--- IDesignerSerializationManager.cs    29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  using System.Collections;
***************
*** 71,75 ****
  }; // interface IDesignerSerializationManager
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 71,75 ----
  }; // interface IDesignerSerializationManager
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: IDesignerSerializationProvider.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/IDesignerSerializationProvider.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IDesignerSerializationProvider.cs   24 May 2003 00:42:35 -0000      1.1
--- IDesignerSerializationProvider.cs   29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public interface IDesignerSerializationProvider
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  public interface IDesignerSerializationProvider
***************
*** 34,38 ****
  }; // interface IDesignerSerializationProvider
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 34,38 ----
  }; // interface IDesignerSerializationProvider
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: IDesignerSerializationService.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/IDesignerSerializationService.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IDesignerSerializationService.cs    24 May 2003 00:42:35 -0000      1.1
--- IDesignerSerializationService.cs    29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  using System.Collections;
***************
*** 37,41 ****
  }; // interface IDesignerSerializationService
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 37,41 ----
  }; // interface IDesignerSerializationService
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: INameCreationService.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/INameCreationService.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** INameCreationService.cs     24 May 2003 00:42:35 -0000      1.1
--- INameCreationService.cs     29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public interface INameCreationService
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  public interface INameCreationService
***************
*** 38,42 ****
  }; // interface INameCreationService
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 38,42 ----
  }; // interface INameCreationService
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: InstanceDescriptor.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/InstanceDescriptor.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** InstanceDescriptor.cs       24 May 2003 00:42:35 -0000      1.1
--- InstanceDescriptor.cs       29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  using System.Collections;
***************
*** 123,127 ****
  }; // class InstanceDescriptor
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 123,127 ----
  }; // class InstanceDescriptor
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: ResolveNameEventArgs.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/ResolveNameEventArgs.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ResolveNameEventArgs.cs     24 May 2003 00:42:35 -0000      1.1
--- ResolveNameEventArgs.cs     29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public class ResolveNameEventArgs : EventArgs
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  public class ResolveNameEventArgs : EventArgs
***************
*** 59,63 ****
  }; // class ResolveNameEventArgs
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 59,63 ----
  }; // class ResolveNameEventArgs
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: ResolveNameEventHandler.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/ResolveNameEventHandler.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ResolveNameEventHandler.cs  24 May 2003 00:42:35 -0000      1.1
--- ResolveNameEventHandler.cs  29 May 2003 05:38:18 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  [Serializable]
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  [Serializable]
***************
*** 29,33 ****
                        (Object sender, ResolveNameEventArgs e);
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 29,33 ----
                        (Object sender, ResolveNameEventArgs e);
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization

Index: RootDesignerSerializerAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/Design/Serialization/RootDesignerSerializerAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** RootDesignerSerializerAttribute.cs  24 May 2003 06:04:25 -0000      1.2
--- RootDesignerSerializerAttribute.cs  29 May 2003 05:38:18 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface,
--- 23,27 ----
  {
  
! #if CONFIG_COMPONENT_MODEL_DESIGN
  
  [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface,
***************
*** 95,99 ****
  }; // class RootDesignerSerializerAttribute
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.ComponentModel.Design.Serialization
--- 95,99 ----
  }; // class RootDesignerSerializerAttribute
  
! #endif // CONFIG_COMPONENT_MODEL_DESIGN
  
  }; // namespace System.ComponentModel.Design.Serialization





reply via email to

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