diff options
| author | a1xd <[email protected]> | 2021-09-09 17:28:10 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-09 17:28:10 -0400 |
| commit | 1964548acbc56edb346d2e396eb0108010d869e1 (patch) | |
| tree | 1f709352d4ff564df385afd3cb8a341d52134644 /grapher/AboutBox.cs | |
| parent | rename driver_settings (diff) | |
| download | rawaccel-1964548acbc56edb346d2e396eb0108010d869e1.tar.xz rawaccel-1964548acbc56edb346d2e396eb0108010d869e1.zip | |
port to .NET 5
dependency changes
- Newtonsoft.JSON
+ System.Windows.Forms.DataVisualization
+ System.Data.SqlClient (indirect, but was not added automatically by NuGet)
added ARM64 target
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 { |