Skip to content

Commit

Permalink
- Updated version display logic
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanSoltis committed Feb 20, 2024
1 parent c6f74e3 commit a2ed595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helpers/ConfigurationHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ public static string GetAssemblyVersion()
if (String.IsNullOrEmpty(data))
{
Version version = Assembly.GetExecutingAssembly().GetName().Version!;
result = version.Major + "." + version.Minor + "." + version.Revision;
result = version.Major + "." + version.Minor + "." + version.Build;
CacheHelper.SetCacheObject("assemblyversion", result);
}
else
Expand Down

0 comments on commit a2ed595

Please sign in to comment.