mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-06-04 08:29:45 -04:00
16 lines
No EOL
398 B
C#
16 lines
No EOL
398 B
C#
using System;
|
|
using System.Reflection;
|
|
|
|
namespace DiscordChatExporter.Gui
|
|
{
|
|
public partial class App
|
|
{
|
|
private static readonly Assembly Assembly = typeof(App).Assembly;
|
|
|
|
public static string Name => Assembly.GetName().Name!;
|
|
|
|
public static Version Version => Assembly.GetName().Version!;
|
|
|
|
public static string VersionString => Version.ToString(3);
|
|
}
|
|
} |