public DateTime TimestampAsDateTime { get; }
Gets the exact timestamp that the last build was made as a datetime.
private void OnEnable()
{
var buildInfo = AssetAccessor.GetAsset<BuildInformation>();
Debug.Log(buildInfo.TimestampAsDateTime);
}