From afd22ca85dc46b3d9c5dc0938042abdea106a100 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 6 Jul 2020 09:18:06 +0800 Subject: [PATCH] Version information in About dialog --- UI/About.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/About.xaml.cs b/UI/About.xaml.cs index d3080e3d..6219b17e 100644 --- a/UI/About.xaml.cs +++ b/UI/About.xaml.cs @@ -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 { /// public string Version { get { - return FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion; + return "VERSION : " + FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion; } }