Abhijeet
Abhijeet

Reputation: 13856

Why Auto Update does not work for sample MyApp using Squirrel.Windows

As per documentation I followed all the steps but the application did not update to 3.0.0. Which I suppose should happen automatically when App was opened. (It stayed at 1.0.0) enter image description here


enter image description here

  1. I updated the Assembly Info version: enter image description here

  2. Did release again from Visual Studio

  3. Updated Nuget meta data in Nuger package manager enter image description here

  4. Executed squirrel --releasify MyApp.3.0.0.nupkg enter image description here

This indeed created new .nupkg with 3.0.0: enter image description here

P.S. I'm trying 1.0.0 to 3.0.0 as an example.

App was indeed 3.0.0 when running directly from Visual Studio enter image description here

My releases folder has been set correctly: Folder Path: enter image description here In Code enter image description here

In %LocalApp\MyApp version 3.0.0 had not been downloaded: enter image description here

Upvotes: 0

Views: 617

Answers (1)

Abhijeet
Abhijeet

Reputation: 13856

Learnt that Main method must be async and await must be used.

enter image description here

Upvotes: 0

Related Questions