We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69ad496 commit e64320dCopy full SHA for e64320d
src/Azure.Functions.Cli/Common/Constants.cs
@@ -28,9 +28,8 @@ internal static class Constants
28
public const string PackageReferenceElementName = "PackageReference";
29
30
public static string CliVersion => typeof(Constants).GetTypeInfo().Assembly.GetName().Version.ToString(3);
31
- public static string CliBetaRevision => typeof(Constants).GetTypeInfo().Assembly.GetName().Version.MinorRevision.ToString();
32
33
- public static string CliDisplayVersion => CliVersion + ((CliBetaRevision == "0") ? string.Empty : $"-beta.{CliBetaRevision}");
+ public static string CliDisplayVersion => CliVersion;
34
35
36
public static class Errors
0 commit comments