vote up 0 vote down star

I want to be able to display the current version of a .NET application that I have deployed using the publish wizard. There is a nice option to automatically update the version number every time I publish my application.

I found another question(Automatically update version number) that had this to get the current version.

Assembly.GetExecutingAssembly().GetName().Version

This gets you the version you set in the project properties but not the version that is automatically incremented each time you publish.

flag
Can you qualify that assertion somehow? GetExecutingAssembly().GetName().Version works just fine on release assemblies – Sam Saffron Aug 8 at 13:02
Maybe I meant publish and not deploy. I can go change that in the question. When I run through the publish wizard it automatically updates a publish version. In code it is referred to as the Deployed version. – Ed Haber Aug 8 at 13:05

1 Answer

vote up 1 vote down

I ended up using this little bit of code to get the current deployed version or if it isn't deployed the current assembly version.

private Version GetRunningVersion()
{
  try
  {
    return System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion;
  }
  catch
  {
    return Assembly.GetExecutingAssembly().GetName().Version;
  }
}

I had to add a reference to System.Deployment.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.