ExtensionDefinitionMaxFrameworkVersion Property |
Maximum version of Hummingbird Test Framework where the extension can work. if the value is empty, the extension will work on the same major version as MinFrameworkVersion.
Namespace:
Hummingbird.TestFramework.Extensibility
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public Version MaxFrameworkVersion { get; set; }
<DataMemberAttribute>
Public Property MaxFrameworkVersion As Version
Get
Set
public:
[DataMemberAttribute]
property Version^ MaxFrameworkVersion {
Version^ get ();
void set (Version^ value);
}
[<DataMemberAttribute>]
member MaxFrameworkVersion : Version with get, set
Property Value
Type:
VersionExamples
If MinFrameworkVersion is 1.1.0, and MaxFrameworkVersion is empty, the extension will supports all 1.1+ versions: 1.1.0, 1.9.9000, ... but will not support all 2.x versions.
See Also