mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 10:10:48 +01: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";
|
|
}
|
|
}
|