Hello,
I'm using AutomaticUpdater in our applications for a long time. Now I realized that at some point in the past something went wrong, and I cannot figure out the reason.
I get an exception when I call Initialize(), stating that the file is not found at C:\Users\TamasiZoli\AppData\Roaming\wyUpdate AU\98cf571a-e431-4f24-bc43-3e0389e67291.autoupdate.
I use the following code in my main form's constructor: _updater = new AutomaticUpdaterBackend(); _updater.ReadyToBeInstalled += _updater_ReadyToBeInstalled; _updater.UpToDate += _updater_UpToDate; _updater.UpdateAvailable += _updater_UpdateAvailable; _updater.UpdateSuccessful += _updater_UpdateSuccessful; _updater.UpdateFailed += _updater_UpdateFailed; _updater.CheckingFailed += _updater_CheckingFailed; _updater.DownloadingFailed += _updater_DownloadingFailed; _updater.BeforeChecking += _updater_BeforeChecking; _updater.GUID = Guid.NewGuid().ToString(); _updater.UpdateType = UpdateType.Automatic; _updater.wyUpdateLocation = @"wyUpdate.exe";
and these lines in my form's Load event
_updater.Initialize(); _updater.AppLoaded();
Maybe it has nothing to do about this issue, but I've noticed that after updating my wyBuild sofware to 2.6.17.1, the AutomaticUpdater in its program folder still has the version 2.6.16.
Thank you for any help,Zolt