Summary
Gets the version of the assembly.
Syntax
[Function("get-version")]
public static Version GetVersion(AssemblyName assemblyName)
Examples
Output the major version of the nunit.framework
assembly
to the build log.
<echo message="${version::get-major(assemblyname::get-version(assemblyname::get-assembly-name('nunit.framework.dll')))}" />
Attributes
Type |
Description |
FunctionAttribute |
Indicates that the method should be exposed as a function in NAnt build
files.
|
Parameters
Name |
Type |
Description |
assemblyName |
AssemblyName |
The System.Reflection.AssemblyName of the assembly. |
Return Value
Type |
Description |
Version |
The version of the assembly.
|
See Also
- NAnt.Core.Functions.AssemblyFunctions.GetName(System.Reflection.Assembly)
- NAnt.Core.Functions.VersionFunctions