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