Share via


xInfo.buildNo Method

Definition

Retrieves the kernel build number of the current Finance and Operations executable.

public:
 static System::String ^ buildNo();
public static string buildNo ();
static member buildNo : unit -> string
Public Shared Function buildNo () As String

Returns

A string that contains the kernel build number.

Remarks

The following example uses this method to return the kernel build number as part of a string that contains Finance and Operations version information.

static client str axaptaReleaseID() 
{ 
    #define.versionPrefix('v') 
    #define.versionNumber('#') 
    #define.versionPartition('/') 
    return    #versionprefix+xInfo::releaseVersion()+ 
              #versionNumber+xInfo::buildNo()+ 
              #versionPartition+ApplicationVersion::buildNo(); 
}

Applies to