Files
Needlework.Net/Needlework.Net/Constants/AppInfo.cs
2025-06-19 07:12:52 -05:00

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";
}
}