Declaration


public static string SemanticVersionNumber { get; }

Description


Get the current version number, this is the number in the player settings.

Example


private void OnEnable()
{
		var buildInfo = AssetAccessor.GetAsset<BuildInformation>();
		Debug.Log(buildInfo.SemanticBuildNumber);
}