xInfo.releaseVersion 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 version number of the current Finance and Operations executable; for example: 3.0, or 4.0.
public:
static System::String ^ releaseVersion();
public static string releaseVersion ();
static member releaseVersion : unit -> string
Public Shared Function releaseVersion () As String
Returns
A string containing the Finance and Operations version number.
Remarks
Possible version numbers include 3.0 and 4.0.
The following example uses this return the version 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();
}