using System;
using System.IO;
using Abp.Reflection.Extensions;
namespace VberAdmin;
///
/// 应用程序版本的中心点
///
public class AppVersionHelper
{
///
/// 获取应用程序的当前版本。
/// 它也显示在网页中。
///
public const string Version = "1.0.0.0";
///
/// 获取应用程序的发布(上次构建)日期。
/// 它也显示在网页中。
///
public static DateTime ReleaseDate => LzyReleaseDate.Value;
private static readonly Lazy LzyReleaseDate = new Lazy(() => new FileInfo(typeof(AppVersionHelper).GetAssembly().Location).LastWriteTime);
}