mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
Version information in About dialog
This commit is contained in:
parent
41a5ac2dc8
commit
afd22ca85d
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
using System.Diagnostics;
|
||||
using System.Diagnostics;
|
||||
using System.Reflection;
|
||||
using System.Windows;
|
||||
using System.Windows.Navigation;
|
||||
|
@ -15,7 +15,7 @@ namespace SourceGit.UI {
|
|||
/// </summary>
|
||||
public string Version {
|
||||
get {
|
||||
return FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion;
|
||||
return "VERSION : " + FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue