You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
398 B
16 lines
398 B
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);
|
|
}
|
|
} |