2005-11-30 Chris Toshok <toshok@ximian.com>
authorChris Toshok <toshok@novell.com>
Thu, 1 Dec 2005 01:34:04 +0000 (01:34 -0000)
committerChris Toshok <toshok@novell.com>
Thu, 1 Dec 2005 01:34:04 +0000 (01:34 -0000)
* CompilerCollection.cs: ugly hack to fix the
2.0-without-config-2.0 case.  wrap this file in #if
CONFIGURATION_2_0 as well as #if NET_2_0.

* Compiler.cs: same.

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

mcs/class/System.Web/System.Web.Configuration_2.0/ChangeLog
mcs/class/System.Web/System.Web.Configuration_2.0/Compiler.cs
mcs/class/System.Web/System.Web.Configuration_2.0/CompilerCollection.cs

index 14d2fd257046d75782972c91496cb6e0f0263221..bb06f2593767d0562844e60feb2362e73fb441eb 100644 (file)
@@ -1,3 +1,11 @@
+2005-11-30  Chris Toshok  <toshok@ximian.com>
+
+       * CompilerCollection.cs: ugly hack to fix the
+       2.0-without-config-2.0 case.  wrap this file in #if
+       CONFIGURATION_2_0 as well as #if NET_2_0.
+       
+       * Compiler.cs: same.
+
 2005-11-28  Chris Toshok  <toshok@ximian.com>
 
        * SessionStateSection.cs (CookieLess): correct the compat function
index 7e5527a2682a5ecd3c172673efe77cf1c1b9bdc7..d2d771510c3cd598a3a76c6dbf182dd203608bcd 100644 (file)
@@ -29,7 +29,7 @@
 //
 
 #if NET_2_0
-
+#if CONFIGURATION_2_0
 using System;
 using System.CodeDom.Compiler;
 using System.ComponentModel;
@@ -132,5 +132,5 @@ namespace System.Web.Configuration
 #endregion
        }
 }
-
+#endif
 #endif
index 2505e38b1bf0c6f0ecc96d39eb2b422f54da8024..7bbfd30fde1a4ea9708dde46a8dfed38850ccaca 100644 (file)
@@ -29,6 +29,7 @@
 //
 
 #if NET_2_0
+#if CONFIGURATION_2_0
 
 using System;
 using System.Configuration;
@@ -118,5 +119,5 @@ namespace System.Web.Configuration
                }
        }
 }
-
+#endif
 #endif