Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs b/mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs
index 2f27d9b0c26..29b54eeeff2 100644
--- a/mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs
+++ b/mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs
@@ -28,7 +28,6 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if !NET_2_0
using System;
using System.CodeDom.Compiler;
using System.Collections;
@@ -134,7 +133,7 @@ namespace System.Web.Configuration
num_recompiles_before_app_restart = parent.num_recompiles_before_app_restart;
strict = parent.strict;
temp_directory = parent.temp_directory;
-#if NET_2_0
+#if CONFIGURATION_2_0
compilers = new CompilerCollection ();
#else
compilers = new CompilerCollection (parent.compilers);
@@ -215,4 +214,3 @@ namespace System.Web.Configuration
}
}
}
-#endif