Gallifrey.Versions.VersionControl.SetVersionName C# (CSharp) Méthode

SetVersionName() private méthode

private SetVersionName ( ) : void
Résultat void
        private void SetVersionName()
        {
            VersionName = IsAutomatedDeploy ? DeployedVersion.ToString() : Application.ProductVersion;
            var betaText = InstanceType == InstanceType.Stable ? "" : $" ({InstanceType})";

            if (!IsAutomatedDeploy)
            {
                betaText = " (Debug)";
            }

            VersionName = $"v{VersionName}{betaText}";
        }