mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2026-07-11 13:39:41 +02:00
12 lines
297 B
C#
12 lines
297 B
C#
using System.Reflection;
|
|
|
|
namespace Needlework.Net.Constants
|
|
{
|
|
public static class AppInfo
|
|
{
|
|
public static readonly string Name = "Needlework.Net";
|
|
|
|
public static readonly string Version = Assembly.GetEntryAssembly()?.GetName().Version?.ToString() ?? "0.0.0.0";
|
|
}
|
|
}
|