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/CodeDom/Compiler CSharpCodeCo


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System/CodeDom/Compiler CSharpCodeCompiler.cs,1.3,1.4 CSharpCodeProvider.cs,1.2,1.3 CodeCompiler.cs,1.3,1.4 CodeDomProvider.cs,1.2,1.3 CodeGenerator.cs,1.3,1.4 CodeGeneratorOptions.cs,1.1,1.2 CodeParser.cs,1.1,1.2 CompilerError.cs,1.2,1.3 CompilerErrorCollection.cs,1.1,1.2 CompilerParameters.cs,1.2,1.3 CompilerResults.cs,1.2,1.3 Executor.cs,1.2,1.3 GeneratorSupport.cs,1.2,1.3 ICodeCompiler.cs,1.1,1.2 ICodeGenerator.cs,1.1,1.2 ICodeParser.cs,1.1,1.2 IndentedTextWriter.cs,1.2,1.3 LanguageOptions.cs,1.1,1.2 TempFileCollection.cs,1.2,1.3 VBCodeCompiler.cs,1.1,1.2 VBCodeProvider.cs,1.1,1.2
Date: Wed, 28 May 2003 21:23:12 -0400

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

Modified Files:
        CSharpCodeCompiler.cs CSharpCodeProvider.cs CodeCompiler.cs 
        CodeDomProvider.cs CodeGenerator.cs CodeGeneratorOptions.cs 
        CodeParser.cs CompilerError.cs CompilerErrorCollection.cs 
        CompilerParameters.cs CompilerResults.cs Executor.cs 
        GeneratorSupport.cs ICodeCompiler.cs ICodeGenerator.cs 
        ICodeParser.cs IndentedTextWriter.cs LanguageOptions.cs 
        TempFileCollection.cs VBCodeCompiler.cs VBCodeProvider.cs 
Log Message:


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


Index: CSharpCodeCompiler.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CSharpCodeCompiler.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** CSharpCodeCompiler.cs       23 May 2003 05:18:09 -0000      1.3
--- CSharpCodeCompiler.cs       29 May 2003 01:22:39 -0000      1.4
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 832,836 ****
  }; // class CSharpCodeCompiler
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 832,836 ----
  }; // class CSharpCodeCompiler
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CSharpCodeProvider.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CSharpCodeProvider.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CSharpCodeProvider.cs       23 May 2003 05:18:09 -0000      1.2
--- CSharpCodeProvider.cs       29 May 2003 01:22:39 -0000      1.3
***************
*** 27,31 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 27,31 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System;
***************
*** 75,79 ****
  }; // class CSharpCodeProvider
  
! #endif // !ECMA_COMPAT
  
  }; // namespace Microsoft.CSharp
--- 75,79 ----
  }; // class CSharpCodeProvider
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace Microsoft.CSharp

Index: CodeCompiler.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CodeCompiler.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** CodeCompiler.cs     12 Apr 2003 02:52:47 -0000      1.3
--- CodeCompiler.cs     29 May 2003 01:22:39 -0000      1.4
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 281,285 ****
  }; // class CodeCompiler
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 281,285 ----
  }; // class CodeCompiler
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CodeDomProvider.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CodeDomProvider.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CodeDomProvider.cs  23 May 2003 04:46:15 -0000      1.2
--- CodeDomProvider.cs  29 May 2003 01:22:39 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 81,85 ****
  }; // class CodeDomProvider
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 81,85 ----
  }; // class CodeDomProvider
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CodeGenerator.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CodeGenerator.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** CodeGenerator.cs    23 May 2003 04:46:15 -0000      1.3
--- CodeGenerator.cs    29 May 2003 01:22:39 -0000      1.4
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 1469,1473 ****
  }; // class CodeGenerator
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 1469,1473 ----
  }; // class CodeGenerator
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CodeGeneratorOptions.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CodeGeneratorOptions.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** CodeGeneratorOptions.cs     15 Nov 2002 07:46:56 -0000      1.1
--- CodeGeneratorOptions.cs     29 May 2003 01:22:39 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections.Specialized;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.Collections.Specialized;
***************
*** 129,133 ****
  }; // class CodeGeneratorOptions
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 129,133 ----
  }; // class CodeGeneratorOptions
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CodeParser.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CodeParser.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** CodeParser.cs       15 Nov 2002 07:46:56 -0000      1.1
--- CodeParser.cs       29 May 2003 01:22:39 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 37,41 ****
  }; // class CodeParser
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 37,41 ----
  }; // class CodeParser
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CompilerError.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CompilerError.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CompilerError.cs    16 Nov 2002 07:17:17 -0000      1.2
--- CompilerError.cs    29 May 2003 01:22:39 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public class CompilerError
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  public class CompilerError
***************
*** 160,164 ****
  }; // class CompilerError
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 160,164 ----
  }; // class CompilerError
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CompilerErrorCollection.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CompilerErrorCollection.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** CompilerErrorCollection.cs  15 Nov 2002 07:46:56 -0000      1.1
--- CompilerErrorCollection.cs  29 May 2003 01:22:39 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.Collections;
***************
*** 152,156 ****
  }; // class CompilerErrorCollection
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 152,156 ----
  }; // class CompilerErrorCollection
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CompilerParameters.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CompilerParameters.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CompilerParameters.cs       23 May 2003 04:46:16 -0000      1.2
--- CompilerParameters.cs       29 May 2003 01:22:39 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections.Specialized;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.Collections.Specialized;
***************
*** 226,230 ****
  }; // class CompilerParameters
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 226,230 ----
  }; // class CompilerParameters
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: CompilerResults.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/CompilerResults.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CompilerResults.cs  23 May 2003 04:46:16 -0000      1.2
--- CompilerResults.cs  29 May 2003 01:22:39 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections.Specialized;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.Collections.Specialized;
***************
*** 127,131 ****
  }; // class CompilerResults
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 127,131 ----
  }; // class CompilerResults
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: Executor.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/Executor.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Executor.cs 23 May 2003 04:46:16 -0000      1.2
--- Executor.cs 29 May 2003 01:22:39 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public sealed class Executor
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  public sealed class Executor
***************
*** 81,85 ****
  }; // class Executor
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 81,85 ----
  }; // class Executor
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: GeneratorSupport.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/GeneratorSupport.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** GeneratorSupport.cs 23 May 2003 04:46:16 -0000      1.2
--- GeneratorSupport.cs 29 May 2003 01:22:39 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  [Flags]
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  [Flags]
***************
*** 52,56 ****
  }; // enum GeneratorSupport
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 52,56 ----
  }; // enum GeneratorSupport
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: ICodeCompiler.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/ICodeCompiler.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ICodeCompiler.cs    15 Nov 2002 07:46:56 -0000      1.1
--- ICodeCompiler.cs    29 May 2003 01:22:39 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  public interface ICodeCompiler
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  public interface ICodeCompiler
***************
*** 53,57 ****
  }; // interface ICodeCompiler
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 53,57 ----
  }; // interface ICodeCompiler
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: ICodeGenerator.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/ICodeGenerator.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ICodeGenerator.cs   15 Nov 2002 07:46:56 -0000      1.1
--- ICodeGenerator.cs   29 May 2003 01:22:39 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 75,79 ****
  }; // interface ICodeGenerator
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 75,79 ----
  }; // interface ICodeGenerator
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: ICodeParser.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/ICodeParser.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ICodeParser.cs      15 Nov 2002 07:46:56 -0000      1.1
--- ICodeParser.cs      29 May 2003 01:22:39 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 34,38 ****
  }; // interface ICodeParser
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 34,38 ----
  }; // interface ICodeParser
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: IndentedTextWriter.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/IndentedTextWriter.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** IndentedTextWriter.cs       23 May 2003 04:46:16 -0000      1.2
--- IndentedTextWriter.cs       29 May 2003 01:22:39 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 299,303 ****
  }; // class IndentedTextWriter
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 299,303 ----
  }; // class IndentedTextWriter
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: LanguageOptions.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/LanguageOptions.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** LanguageOptions.cs  15 Nov 2002 07:46:56 -0000      1.1
--- LanguageOptions.cs  29 May 2003 01:22:39 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  [Flags]
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  [Flags]
***************
*** 33,37 ****
  }; // enum LanguageOptions
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 33,37 ----
  }; // enum LanguageOptions
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: TempFileCollection.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/TempFileCollection.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TempFileCollection.cs       23 May 2003 04:46:16 -0000      1.2
--- TempFileCollection.cs       29 May 2003 01:22:39 -0000      1.3
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.Collections;
***************
*** 178,182 ****
  }; // class TempFileCollection
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 178,182 ----
  }; // class TempFileCollection
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: VBCodeCompiler.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/VBCodeCompiler.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** VBCodeCompiler.cs   23 May 2003 05:18:09 -0000      1.1
--- VBCodeCompiler.cs   29 May 2003 01:22:39 -0000      1.2
***************
*** 23,27 ****
  {
  
! #if !ECMA_COMPAT
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System.IO;
***************
*** 454,458 ****
  }; // class VBCodeCompiler
  
! #endif // !ECMA_COMPAT
  
  }; // namespace System.CodeDom.Compiler
--- 454,458 ----
  }; // class VBCodeCompiler
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace System.CodeDom.Compiler

Index: VBCodeProvider.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/CodeDom/Compiler/VBCodeProvider.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** VBCodeProvider.cs   23 May 2003 05:18:09 -0000      1.1
--- VBCodeProvider.cs   29 May 2003 01:22:39 -0000      1.2
***************
*** 27,31 ****
  {
  
! #if !ECMA_COMPAT
  
  using System;
--- 27,31 ----
  {
  
! #if CONFIG_CODEDOM
  
  using System;
***************
*** 84,88 ****
  }; // class VBCodeProvider
  
! #endif // !ECMA_COMPAT
  
  }; // namespace Microsoft.VisualBasic
--- 84,88 ----
  }; // class VBCodeProvider
  
! #endif // CONFIG_CODEDOM
  
  }; // namespace Microsoft.VisualBasic





reply via email to

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