Author: gonzalo
Date: 2005-05-04 17:07:27 -0400 (Wed, 04 May 2005)
New Revision: 44049

Modified:
   trunk/mcs/class/System.Web/System.Web.Configuration/ChangeLog
   
trunk/mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs
Log:
2005-05-04 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>

        * CompilationConfiguration.cs: throw if we cannot load the type given
        in the configuration file.



Modified: trunk/mcs/class/System.Web/System.Web.Configuration/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web.Configuration/ChangeLog       
2005-05-04 20:59:45 UTC (rev 44048)
+++ trunk/mcs/class/System.Web/System.Web.Configuration/ChangeLog       
2005-05-04 21:07:27 UTC (rev 44049)
@@ -1,3 +1,8 @@
+2005-05-04 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
+
+       * CompilationConfiguration.cs: throw if we cannot load the type given
+       in the configuration file.
+
 2005-04-25 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
 
        * CompilerCollection.cs: added CompareLanguages method.

Modified: 
trunk/mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs
===================================================================
--- 
trunk/mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs 
    2005-05-04 20:59:45 UTC (rev 44048)
+++ 
trunk/mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs 
    2005-05-04 21:07:27 UTC (rev 44049)
@@ -94,7 +94,7 @@
                        if (compiler.Provider != null)
                                return compiler.Provider;
 
-                       Type t = Type.GetType (compiler.Type);
+                       Type t = Type.GetType (compiler.Type, true);
                        compiler.Provider = Activator.CreateInstance (t) as 
CodeDomProvider;
                        return compiler.Provider;
                }

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to