Clickonce: show publish version

  • Thread starter Thread starter Steven Spits
  • Start date Start date
S

Steven Spits

Hi,

Is it possible to show the publish version in a app that is deployed using
ClickOnce?

Assembly.GetExecutingAssembly().GetName().Version shows the assembly
version...

Steven

- - -
 
Hello Steven,
look into System.Deployment.Application namespace:

ApplicationDeployment.CurrentDeployment.CurrentVersion;

Andrej
 
Andrej Tozon said:
look into System.Deployment.Application namespace:
ApplicationDeployment.CurrentDeployment.CurrentVersion;

Perfect! Thank you very much!

Steven

- - -
 
Back
Top