mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-09 11:51:59 -04:00
Clean up
This commit is contained in:
parent
46d8deba87
commit
520c06dceb
1 changed files with 3 additions and 3 deletions
|
@ -7,11 +7,11 @@ namespace DiscordChatExporter.Gui;
|
|||
|
||||
public static class Program
|
||||
{
|
||||
private static Assembly Assembly { get; } = typeof(App).Assembly;
|
||||
private static Assembly Assembly { get; } = Assembly.GetExecutingAssembly();
|
||||
|
||||
public static string Name { get; } = Assembly.GetName().Name!;
|
||||
public static string Name { get; } = Assembly.GetName().Name ?? "DiscordChatExporter";
|
||||
|
||||
public static Version Version { get; } = Assembly.GetName().Version!;
|
||||
public static Version Version { get; } = Assembly.GetName().Version ?? new Version(0, 0, 0);
|
||||
|
||||
public static string VersionString { get; } = Version.ToString(3);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue