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;
        }
 public AppVersionList()
 {
     Versions = new AppVersion[] { };
 }
Ejemplo n.º 4
0
        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;
        }