diff options
Diffstat (limited to 'grapher/AboutBox.cs')
| -rw-r--r-- | grapher/AboutBox.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/grapher/AboutBox.cs b/grapher/AboutBox.cs index 5547c59..5a22329 100644 --- a/grapher/AboutBox.cs +++ b/grapher/AboutBox.cs @@ -21,7 +21,7 @@ namespace grapher #region Assembly Attribute Accessors - public string AssemblyTitle + public static string AssemblyTitle { get { @@ -34,11 +34,11 @@ namespace grapher return titleAttribute.Title; } } - return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); + return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().Location); } } - public string AssemblyVersion + public static string AssemblyVersion { get { |