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