Skip to content

Commit

Permalink
Fixed About dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
zdimension committed Nov 30, 2015
1 parent 090a70a commit 858937e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SharpBoot/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private static void Application_ThreadException(object sender, ThreadExceptionEv
public static string GetVersion()
{
var v = Assembly.GetEntryAssembly().GetName().Version;
return v.Major + "." + v.Minor;
return v.Major + "." + v.Minor + (v.Build == 0 ? "" : "." + v.Build);
}

public static void ClrTmp()
Expand Down
Binary file modified SharpBoot/bin/Debug/SharpBoot.exe
Binary file not shown.

0 comments on commit 858937e

Please sign in to comment.