a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
271 lines
10 KiB
C#
271 lines
10 KiB
C#
//
|
|
// System.Web.Configuration.CompilationSection
|
|
//
|
|
// Authors:
|
|
// Gonzalo Paniagua Javier (gonzalo@ximian.com)
|
|
//
|
|
// (c) Copyright 2005 Novell, Inc (http://www.novell.com)
|
|
//
|
|
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
//
|
|
|
|
#if NET_2_0
|
|
using System;
|
|
using System.Configuration;
|
|
using System.ComponentModel;
|
|
|
|
namespace System.Web.Configuration
|
|
{
|
|
public sealed class CompilationSection : ConfigurationSection
|
|
{
|
|
static ConfigurationPropertyCollection properties;
|
|
static ConfigurationProperty compilersProp;
|
|
static ConfigurationProperty tempDirectoryProp;
|
|
static ConfigurationProperty debugProp;
|
|
static ConfigurationProperty strictProp;
|
|
static ConfigurationProperty explicitProp;
|
|
static ConfigurationProperty batchProp;
|
|
static ConfigurationProperty batchTimeoutProp;
|
|
static ConfigurationProperty maxBatchSizeProp;
|
|
static ConfigurationProperty maxBatchGeneratedFileSizeProp;
|
|
static ConfigurationProperty numRecompilesBeforeAppRestartProp;
|
|
static ConfigurationProperty defaultLanguageProp;
|
|
static ConfigurationProperty assembliesProp;
|
|
static ConfigurationProperty assemblyPostProcessorTypeProp;
|
|
static ConfigurationProperty buildProvidersProp;
|
|
static ConfigurationProperty expressionBuildersProp;
|
|
static ConfigurationProperty urlLinePragmasProp;
|
|
static ConfigurationProperty codeSubDirectoriesProp;
|
|
static ConfigurationProperty optimizeCompilationsProp;
|
|
#if NET_4_0
|
|
static ConfigurationProperty targetFrameworkProp;
|
|
#endif
|
|
|
|
static CompilationSection ()
|
|
{
|
|
assembliesProp = new ConfigurationProperty ("assemblies", typeof (AssemblyCollection), null,
|
|
null, PropertyHelper.DefaultValidator,
|
|
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,
|
|
ConfigurationPropertyOptions.None);
|
|
codeSubDirectoriesProp = new ConfigurationProperty ("codeSubDirectories", typeof (CodeSubDirectoriesCollection), null,
|
|
null, PropertyHelper.DefaultValidator,
|
|
ConfigurationPropertyOptions.None);
|
|
compilersProp = new ConfigurationProperty ("compilers", typeof (CompilerCollection), null,
|
|
null, PropertyHelper.DefaultValidator,
|
|
ConfigurationPropertyOptions.None);
|
|
debugProp = new ConfigurationProperty ("debug", typeof (bool), false);
|
|
defaultLanguageProp = new ConfigurationProperty ("defaultLanguage", typeof (string), "vb");
|
|
expressionBuildersProp = new ConfigurationProperty ("expressionBuilders", typeof (ExpressionBuilderCollection), null,
|
|
null, PropertyHelper.DefaultValidator,
|
|
ConfigurationPropertyOptions.None);
|
|
explicitProp = new ConfigurationProperty ("explicit", typeof (bool), true);
|
|
maxBatchSizeProp = new ConfigurationProperty ("maxBatchSize", typeof (int), 1000);
|
|
maxBatchGeneratedFileSizeProp = new ConfigurationProperty ("maxBatchGeneratedFileSize", typeof (int), 3000);
|
|
numRecompilesBeforeAppRestartProp = new ConfigurationProperty ("numRecompilesBeforeAppRestart", typeof (int), 15);
|
|
strictProp = new ConfigurationProperty ("strict", typeof (bool), false);
|
|
tempDirectoryProp = new ConfigurationProperty ("tempDirectory", typeof (string), "");
|
|
urlLinePragmasProp = new ConfigurationProperty ("urlLinePragmas", typeof (bool), false);
|
|
|
|
// This is a 4.0 property but it is also supported in 3.5 with
|
|
// this hotfix: http://support.microsoft.com/kb/961884
|
|
optimizeCompilationsProp = new ConfigurationProperty ("optimizeCompilations", typeof (bool), false);
|
|
|
|
#if NET_4_0
|
|
// Mono ignores this as there is no way to switch the runtime version
|
|
// dynamically while application is running
|
|
targetFrameworkProp = new ConfigurationProperty ("targetFramework", typeof (string), null);
|
|
#endif
|
|
|
|
properties = new ConfigurationPropertyCollection ();
|
|
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);
|
|
properties.Add (debugProp);
|
|
properties.Add (defaultLanguageProp);
|
|
properties.Add (expressionBuildersProp);
|
|
properties.Add (explicitProp);
|
|
properties.Add (maxBatchSizeProp);
|
|
properties.Add (maxBatchGeneratedFileSizeProp);
|
|
properties.Add (numRecompilesBeforeAppRestartProp);
|
|
properties.Add (strictProp);
|
|
properties.Add (tempDirectoryProp);
|
|
properties.Add (urlLinePragmasProp);
|
|
properties.Add (optimizeCompilationsProp);
|
|
#if NET_4_0
|
|
properties.Add (targetFrameworkProp);
|
|
#endif
|
|
}
|
|
|
|
public CompilationSection ()
|
|
{
|
|
}
|
|
|
|
protected override void PostDeserialize ()
|
|
{
|
|
base.PostDeserialize ();
|
|
}
|
|
|
|
[MonoTODO ("why override this?")]
|
|
protected internal override object GetRuntimeObject ()
|
|
{
|
|
return this;
|
|
}
|
|
|
|
[ConfigurationProperty ("assemblies")]
|
|
public AssemblyCollection Assemblies {
|
|
get { return (AssemblyCollection) base [assembliesProp]; }
|
|
}
|
|
|
|
[ConfigurationProperty ("assemblyPostProcessorType", DefaultValue = "")]
|
|
public string AssemblyPostProcessorType {
|
|
get { return (string) base[assemblyPostProcessorTypeProp]; }
|
|
set { base[assemblyPostProcessorTypeProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("batch", DefaultValue = "True")]
|
|
public bool Batch {
|
|
get { return (bool) base [batchProp]; }
|
|
set { base [batchProp] = value; }
|
|
}
|
|
|
|
[TypeConverter (typeof (TimeSpanSecondsOrInfiniteConverter))]
|
|
[TimeSpanValidator (MinValueString = "00:00:00")]
|
|
[ConfigurationProperty ("batchTimeout", DefaultValue = "00:15:00")]
|
|
public TimeSpan BatchTimeout {
|
|
get { return (TimeSpan) base [batchTimeoutProp]; }
|
|
set { base [batchTimeoutProp] = value; }
|
|
}
|
|
|
|
#if !TARGET_JVM
|
|
[ConfigurationProperty ("buildProviders")]
|
|
public BuildProviderCollection BuildProviders {
|
|
get { return (BuildProviderCollection) base [buildProvidersProp]; }
|
|
}
|
|
#endif
|
|
|
|
[ConfigurationProperty ("codeSubDirectories")]
|
|
public CodeSubDirectoriesCollection CodeSubDirectories {
|
|
get { return (CodeSubDirectoriesCollection) base [codeSubDirectoriesProp]; }
|
|
}
|
|
|
|
[ConfigurationProperty ("compilers")]
|
|
public CompilerCollection Compilers {
|
|
get { return (CompilerCollection) base [compilersProp]; }
|
|
}
|
|
|
|
[ConfigurationProperty ("debug", DefaultValue = "False")]
|
|
public bool Debug {
|
|
get { return (bool) base [debugProp]; }
|
|
set { base [debugProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("defaultLanguage", DefaultValue = "vb")]
|
|
public string DefaultLanguage {
|
|
get { return (string) base [defaultLanguageProp]; }
|
|
set { base [defaultLanguageProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("explicit", DefaultValue = "True")]
|
|
public bool Explicit {
|
|
get { return (bool) base [explicitProp]; }
|
|
set { base [explicitProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("expressionBuilders")]
|
|
public ExpressionBuilderCollection ExpressionBuilders {
|
|
get { return (ExpressionBuilderCollection) base [expressionBuildersProp]; }
|
|
}
|
|
|
|
[ConfigurationProperty ("maxBatchGeneratedFileSize", DefaultValue = "1000")]
|
|
public int MaxBatchGeneratedFileSize {
|
|
get { return (int) base [maxBatchGeneratedFileSizeProp]; }
|
|
set { base [maxBatchGeneratedFileSizeProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("maxBatchSize", DefaultValue = "1000")]
|
|
public int MaxBatchSize {
|
|
get { return (int) base [maxBatchSizeProp]; }
|
|
set { base [maxBatchSizeProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("numRecompilesBeforeAppRestart", DefaultValue = "15")]
|
|
public int NumRecompilesBeforeAppRestart {
|
|
get { return (int) base [numRecompilesBeforeAppRestartProp]; }
|
|
set { base [numRecompilesBeforeAppRestartProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("optimizeCompilations", DefaultValue = "False")]
|
|
public bool OptimizeCompilations {
|
|
get { return (bool) base [optimizeCompilationsProp]; }
|
|
set { base [optimizeCompilationsProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("strict", DefaultValue = "False")]
|
|
public bool Strict {
|
|
get { return (bool) base [strictProp]; }
|
|
set { base [strictProp] = value; }
|
|
}
|
|
|
|
#if NET_4_0
|
|
[ConfigurationProperty ("targetFramework", DefaultValue = null)]
|
|
public string TargetFramework {
|
|
get { return (string) base [targetFrameworkProp]; }
|
|
set { base [targetFrameworkProp] = value; }
|
|
}
|
|
#endif
|
|
|
|
[ConfigurationProperty ("tempDirectory", DefaultValue = "")]
|
|
public string TempDirectory {
|
|
get { return (string) base [tempDirectoryProp]; }
|
|
set { base [tempDirectoryProp] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty ("urlLinePragmas", DefaultValue = "False")]
|
|
public bool UrlLinePragmas {
|
|
get { return (bool) base [urlLinePragmasProp]; }
|
|
set { base [urlLinePragmasProp] = value; }
|
|
}
|
|
|
|
protected internal override ConfigurationPropertyCollection Properties {
|
|
get { return properties; }
|
|
}
|
|
}
|
|
}
|
|
#endif // NET_2_0
|
|
|