Skip to content

Commit

Permalink
Merge pull request #81 from mspnp/dev
Browse files Browse the repository at this point in the history
v4.0.1 Updates
  • Loading branch information
BryanSoltis authored Feb 20, 2024
2 parents 5cc1e12 + 4298f34 commit 9170501
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 9170501

Please sign in to comment.