using System; using System.IO; using Abp.Reflection.Extensions; namespace WeOnlineApp.Configuration { /// /// Central point for application version. /// public class AppVersionHelper { /// /// Gets current version of the application. /// It's also shown in the web page. /// public const string Version = IwbConsts.Version; /// /// Gets release (last build) date of the application. /// It's shown in the web page. /// public static DateTime ReleaseDate => new FileInfo(typeof(AppVersionHelper).GetAssembly().Location).LastWriteTime; } }