DesktopApplication.BuildDateTime

From Xojo Documentation

Read-Only Property (As DateTime )
DateTimeValue = aDesktopApplication.BuildDateTime

New in 2021r3

Supported for all project types and targets.

Contains the date and time when the application was built.

Notes

You can also access the CreationDateTime property of the application's FolderItem by calling App.ExecutableFile.CreationDate.

Sample Code

The following code gets the build date/time and displays it in a Label.

Var d As New DateTime
d = App.BuildDateTime

Label1.Value = d.ToString