Update version numbers

Hi,

I want to display the version number of my application. Is there a way to get the version number from Automaticupdater?I tought it was

lblprogramversion = AutomaticUpdater.ProductVersion.ToString

But this gives the version of Wyupdate.exe, and

lblprogramversion = AutomaticUpdater.Version.ToString

gives me the URL of the website where the updates are located.

Thanks

I want to display the version number of my application. Is there a way to get the version number from Automaticupdater?

No, read the version number of your app from your app.

I could do that, but my app version number is always 1.0.0.0 at this moment, because it doesn't change it with every update.In the Clickonce days, the version number was auto updated when I publish a new version.I could manually change the version, but I would like to do it automatic if possible to avoid mistakes and mistypes.

Or maybe i'm just looking at wrong way to release a new version of my app? This is the way I do it:- When done coding, I change debug to release, and build my app to "\bin\Release\newversion"- I change "\bin\Release\newversion" to "\bin\Release\1.1.7"- I add the 1.1.7 update in wyBuild and add the changes- I add the contents of "\bin\Release\1.1.7" to the "your program's folder" in wyBuild- I build the updates, and upload them

Is there a way to auto increment version numbers? (as far as I know you can only do this when using clickonce deployment)

Thanks