Summary
Determines whether the given package is at least version
version.
Syntax
[Function("is-atleast-version")]
public bool IsAtLeastVersion(string package, string version)
Attributes
| Type |
Description |
| FunctionAttribute |
Indicates that the method should be exposed as a function in NAnt build
files.
|
Parameters
| Name |
Type |
Description |
| package |
string |
The package to check. |
| version |
string |
The version the package should at least have. |
Return Value
| Type |
Description |
| bool |
true if the given package is at least version
version; otherwise, false.
|