public AppVersionList() { Versions = new AppVersion[] { }; }
public static AppVersion GetCurrentVersion() { Assembly appAssembly = Assembly.GetExecutingAssembly(); Version version = GetVersion(appAssembly); AppVersion appVersion = new AppVersion(); appVersion.Configuration = GetConfiguration(appAssembly); appVersion.SetVersion(version); return appVersion; }
private static string GetTitle() { Assembly appAssembly = Assembly.GetExecutingAssembly(); AppVersion appVersion = new AppVersion(); appVersion.Configuration = GetConfiguration(appAssembly); appVersion.SetVersion(GetVersion(appAssembly)); return "EVE Intel Monitor - " + appVersion; }