xInfo.buildNo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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();
}