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 AppDomain.cs,1.20,1.21


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System AppDomain.cs,1.20,1.21 AppDomainSetup.cs,1.2,1.3 Delegate.cs,1.13,1.14 Exception.cs,1.22,1.23 IAppDomainSetup.cs,1.2,1.3 Object.cs,1.9,1.10 Type.cs,1.24,1.25 _AppDomain.cs,1.6,1.7
Date: Wed, 28 May 2003 21:22:43 -0400

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

Modified Files:
        AppDomain.cs AppDomainSetup.cs Delegate.cs Exception.cs 
        IAppDomainSetup.cs Object.cs Type.cs _AppDomain.cs 
Log Message:


Add new profile options - CONFIG_COM_INTEROP, CONFIG_CODEDOM,
CONFIG_CRYPTO, CONFIG_X509_CERTIFICATES.


Index: AppDomain.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/AppDomain.cs,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** AppDomain.cs        26 May 2003 05:03:41 -0000      1.20
--- AppDomain.cs        29 May 2003 01:22:40 -0000      1.21
***************
*** 37,41 ****
  #if CONFIG_RUNTIME_INFRA
  
! #if !ECMA_COMPAT
  [ClassInterface(ClassInterfaceType.None)]
  #endif
--- 37,41 ----
  #if CONFIG_RUNTIME_INFRA
  
! #if CONFIG_COM_INTEROP
  [ClassInterface(ClassInterfaceType.None)]
  #endif

Index: AppDomainSetup.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/AppDomainSetup.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** AppDomainSetup.cs   23 Apr 2003 11:00:42 -0000      1.2
--- AppDomainSetup.cs   29 May 2003 01:22:40 -0000      1.3
***************
*** 27,31 ****
--- 27,33 ----
  
  [Serializable]
+ #if CONFIG_COM_INTEROP
  [ClassInterface(ClassInterfaceType.None)]
+ #endif
  public sealed class AppDomainSetup : IAppDomainSetup
  {

Index: Delegate.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Delegate.cs,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** Delegate.cs 26 May 2003 04:41:21 -0000      1.13
--- Delegate.cs 29 May 2003 01:22:40 -0000      1.14
***************
*** 27,31 ****
  using System.Runtime.Serialization;
  
! #if !ECMA_COMPAT
  [ClassInterface(ClassInterfaceType.AutoDual)]
  #endif
--- 27,31 ----
  using System.Runtime.Serialization;
  
! #if CONFIG_COM_INTEROP
  [ClassInterface(ClassInterfaceType.AutoDual)]
  #endif

Index: Exception.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Exception.cs,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** Exception.cs        26 May 2003 04:41:21 -0000      1.22
--- Exception.cs        29 May 2003 01:22:40 -0000      1.23
***************
*** 53,57 ****
  */
  
! #if !ECMA_COMPAT
  [ClassInterface(ClassInterfaceType.AutoDual)]
  #endif
--- 53,57 ----
  */
  
! #if CONFIG_COM_INTEROP
  [ClassInterface(ClassInterfaceType.AutoDual)]
  #endif

Index: IAppDomainSetup.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/IAppDomainSetup.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** IAppDomainSetup.cs  23 Apr 2003 05:39:48 -0000      1.2
--- IAppDomainSetup.cs  29 May 2003 01:22:40 -0000      1.3
***************
*** 27,31 ****
--- 27,33 ----
  
  [Guid("27FFF232-A7A8-40dd-8D4A-734AD59FCD41")]
+ #if CONFIG_COM_INTEROP
  [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
+ #endif
  public interface IAppDomainSetup
  {

Index: Object.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Object.cs,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** Object.cs   23 Apr 2003 05:39:48 -0000      1.9
--- Object.cs   29 May 2003 01:22:40 -0000      1.10
***************
*** 27,31 ****
  using System.Resources;
  
! #if !ECMA_COMPAT
  [ClassInterface(ClassInterfaceType.AutoDual)]
  #endif
--- 27,31 ----
  using System.Resources;
  
! #if CONFIG_COM_INTEROP
  [ClassInterface(ClassInterfaceType.AutoDual)]
  #endif

Index: Type.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Type.cs,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** Type.cs     27 May 2003 18:47:35 -0000      1.24
--- Type.cs     29 May 2003 01:22:40 -0000      1.25
***************
*** 30,34 ****
  using System.Diagnostics;
  
! #if !ECMA_COMPAT
  [ClassInterface(ClassInterfaceType.AutoDual)]
  #endif
--- 30,34 ----
  using System.Diagnostics;
  
! #if CONFIG_COM_INTEROP
  [ClassInterface(ClassInterfaceType.AutoDual)]
  #endif

Index: _AppDomain.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/_AppDomain.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** _AppDomain.cs       26 May 2003 05:03:41 -0000      1.6
--- _AppDomain.cs       29 May 2003 01:22:40 -0000      1.7
***************
*** 39,43 ****
--- 39,45 ----
  [CLSCompliant(false)]
  [Guid("05F696DC-2B29-3663-AD8B-C4389CF2A713")]
+ #if CONFIG_COM_INTEROP
  [InterfaceType(ComInterfaceType.InterfaceIsDual)]
+ #endif
  public
  #endif





reply via email to

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