Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Can you qualify that assertion somehow? GetExecutingAssembly().GetName().Version works just fine on release assemblies – Sam Saffron Aug 8 '09 at 13:02
1  
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 '09 at 13:05

2 Answers

up vote 19 down vote accepted

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 Application.ApplicationDeployment.CurrentDeployment.CurrentVersion;
  }
  catch
  {
    return Assembly.GetExecutingAssembly().GetName().Version;
  }
}

I had to add references to System.Deployment and System.Reflection.

share|improve this answer

You can use the following test

if (System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed) {
    return System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion;
}

to avoid the exception (as detailed in this post).

Also, I don't think you can get the current publish version via Visual Studio debugging because accessing CurrentDeployment will throw an InvalidDeploymentException.

share|improve this answer
1  
I prefer this method over the accepted answer. The accepted answer makes no distinction about which exception it's handling. It's generally bad practice to make sweeping exception handlers. – Doc Jan 18 at 20:24
Likewise. It also doesn't revert arbitrarily to the assembly version; it's not comparable to the deployment version, so it shouldn't be used as a fallback. – Arlen Apr 12 at 5:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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