Skip to content
This repository has been archived by the owner on Apr 2, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:Bottswana/ARKUpdater
Browse files Browse the repository at this point in the history
  • Loading branch information
Bottswana committed Sep 23, 2015
2 parents bde2a48 + 4994716 commit c14e3d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ARKUpdater/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,10 @@ public static string GetApplicationVersion()
{
System.Reflection.Assembly execAssembly = System.Reflection.Assembly.GetCallingAssembly();
System.Reflection.AssemblyName name = execAssembly.GetName();
return string.Format("{0:0}.{1:0} (.NET {2})",
return string.Format("{0:0}.{1:0}.{2:0} (.NET {3})",
name.Version.Major.ToString(),
name.Version.Minor.ToString(),
name.Version.Build.ToString(),
execAssembly.ImageRuntimeVersion
);
}
Expand Down

0 comments on commit c14e3d2

Please sign in to comment.