2008-10-09 Marek Habersack <mhabersack@novell.com>
authorMarek Habersack <grendel@twistedcode.net>
Thu, 9 Oct 2008 11:51:09 +0000 (11:51 -0000)
committerMarek Habersack <grendel@twistedcode.net>
Thu, 9 Oct 2008 11:51:09 +0000 (11:51 -0000)
* CompilerCollection.cs: use all the compiler information from
config file when adding new CompilerInfo. Fixes bug #433802

svn path=/trunk/mcs/; revision=115329

mcs/class/System/System.CodeDom.Compiler/ChangeLog
mcs/class/System/System.CodeDom.Compiler/CompilerCollection.cs

index 110fce88a0050022c270b8c87340dd6d2b777646..cff579d602703824a9e5748c365b3038d9440f3e 100644 (file)
@@ -1,3 +1,8 @@
+2008-10-09  Marek Habersack  <mhabersack@novell.com>
+
+       * CompilerCollection.cs: use all the compiler information from
+       config file when adding new CompilerInfo. Fixes bug #433802
+
 2008-02-26  Marek Habersack  <mhabersack@novell.com>
 
        * CompilerResults.cs: Output can be set internally.
index 4abfb776c65382905cc289ebbc282c6e8fa1af2f..70698b8fae237a5f726b8b2d800733d8f69e3029 100644 (file)
@@ -119,6 +119,8 @@ namespace System.CodeDom.Compiler
                        ci.Extensions = compiler.Extension;
                        ci.TypeName = compiler.Type;
                        ci.ProviderOptions = compiler.ProviderOptionsDictionary;
+                       ci.CompilerOptions = compiler.CompilerOptions;
+                       ci.WarningLevel = compiler.WarningLevel;
                        AddCompilerInfo (ci);
                }