Any example of getting assembly version?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In stead of storing a string in my code of the current version that duplicates the assembly version, can I read the assembly version programatically? Thanks.
 
Assembly.GetExecutingAssembly.GetName.Version should return the version number of the executing assembly

HT

David
 
Back
Top