Example #1
0
        public static bool IsLatest()
        {
            string localVersion  = ProductInfoUtility.GetVersion();
            string latestVersion = JsonReleaseInfo.GetVersion();

            return(string.Equals(localVersion, latestVersion));
        }
Example #2
0
 public static string GetLatestVersion()
 {
     JsonReleaseInfo.FetchInfo(JsonReleaseInfo.GetReleaseUrl());
     return(JsonReleaseInfo.GetVersion());
 }