|
|
@@ -63,9 +63,11 @@ namespace System.Web.Configuration
|
|
|
ConfigurationPropertyOptions.None);
|
|
|
assemblyPostProcessorTypeProp = new ConfigurationProperty ("assemblyPostProcessorType", typeof (string), "");
|
|
|
batchProp = new ConfigurationProperty ("batch", typeof (bool), true);
|
|
|
+#if !TARGET_JVM
|
|
|
buildProvidersProp = new ConfigurationProperty ("buildProviders", typeof (BuildProviderCollection), null,
|
|
|
null, PropertyHelper.DefaultValidator,
|
|
|
ConfigurationPropertyOptions.None);
|
|
|
+#endif
|
|
|
batchTimeoutProp = new ConfigurationProperty ("batchTimeout", typeof (TimeSpan), new TimeSpan (0, 15, 0),
|
|
|
PropertyHelper.TimeSpanSecondsOrInfiniteConverter,
|
|
|
PropertyHelper.PositiveTimeSpanValidator,
|
|
|
@@ -93,7 +95,9 @@ namespace System.Web.Configuration
|
|
|
properties.Add (assembliesProp);
|
|
|
properties.Add (assemblyPostProcessorTypeProp);
|
|
|
properties.Add (batchProp);
|
|
|
+#if !TARGET_JVM
|
|
|
properties.Add (buildProvidersProp);
|
|
|
+#endif
|
|
|
properties.Add (batchTimeoutProp);
|
|
|
properties.Add (codeSubDirectoriesProp);
|
|
|
properties.Add (compilersProp);
|