Indicates that the value of the property to which the attribute is assigned, can be configured on the framework-level in the NAnt application configuration file.
For a list of all members of this type, see FrameworkConfigurableAttribute Members.
System.Object
System.Attribute
NAnt.Core.Attributes.FrameworkConfigurableAttribute
Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.
The following example shows a property of which the value can be configured for a specific framework in the NAnt configuration file.
[C#]
[FrameworkConfigurable("exename", Required=true)]
public virtual string ExeName {
get { return _exeName; }
set { _exeName = value; }
}
Namespace: NAnt.Core.Attributes
Assembly: NAnt.Core (in NAnt.Core.dll)
FrameworkConfigurableAttribute Members | NAnt.Core.Attributes Namespace