/// <summary>
        /// Reads the remote Eugene file for the location where the new software version can be downloaded
        /// </summary>
        /// <returns>The location where the new software version can be downloaded</returns>
        public async System.Threading.Tasks.Task <string> GetDownloadLocationAsync()
        {
            await _remoteFileReader.ReadRemoteFileAsync();

            return(_remoteFileReader.Configuration.GetValue("download"));
        }