NAnt SDK Documentation - v0.85-nightly-2005-11-09

PkgConfigFunctions.IsAtLeastVersion Method 

[This is preliminary documentation and subject to change.]

Determines whether the given package is at least version version.

[Visual Basic]
<Function(Name:="is-atleast-version")>
Public Function IsAtLeastVersion( _
   ByVal package As String, _
   ByVal version As String _
) As Boolean
[C#]
[Function(Name="is-atleast-version")]
public bool IsAtLeastVersion(
   string package,
   string version
);

Parameters

package
The package to check.
version
The version the package should at least have.

Return Value

true if the given package is at least version version; otherwise, false.

Remarks

Missing <remarks> documentation for M:NAnt.Core.Functions.PkgConfigFunctions.IsAtLeastVersion(System.String,System.String)

Exceptions

Exception Type Condition
Win32Exception pkg-config could not be started.

See Also

PkgConfigFunctions Class | NAnt.Core.Functions Namespace