It's possible i did something wrong with the source, since it worked at the beginning.
Here the parts which might affect the process:
--------------------------
public Form1(){ InitalizeComponent(); automaticUpdater1.wyUpdateCommandLine = "-skipinfo"; automaticUpdater1.Translation.AlreadyUpToDate = "Program ist aktuell"; // Works automaticUpdater1.Translation.Checking = "Suche nach Updates..."; // Hangs at Checking}
private void button1_Click(object sender, EventArgs e){ // Force Update if (automaticUpdater1.UpdateStepOn == wyDay.Controls.UpdateStepOn.Nothing) automaticUpdater1.ForceCheckUpdate(true); // Since it hangs it never allows this anyway}
private void button1_ReadyToBeInstalled(object sender, EventArgs e){ // Start Install if possible... automaticUpdater1.InstallNow();}
private void automaticUpdater1_CheckingFailed(object sender, wyDay.Controls.FailArgs e){ // Never comes here...}
private void automaticUpdater1_UpdateAvailable(object sender, EventArgs e){// Never comes here too...}--------------------------
GUID is set.Events are Linked.
Note: when i try the first version, the Updater says immediately (check is fast): "Program is up to date" .As soon as i publish an Update it doesn't work anymore.
I'm not sure if i understood correctly how to include the file "client.wyc" in Updates.But i guess it should be like that:
If i make a new Update 1.18, i should include client.wyc from 1.17 in that file pool.
Or did i misunderstood that?