Setting Version of Project or Exe?

  • Thread starter Thread starter John Rugo
  • Start date Start date
J

John Rugo

Hi All,
I can't figure out where in Visual Studiio .NET to set the Version
informaiton for my application? I've seen it before but my mind is empty
today; could someone please tell me where to set the version information?

Thanks!
 
John Rugo said:
Hi All,
I can't figure out where in Visual Studiio .NET to set the Version
informaiton for my application? I've seen it before but my mind is
empty today; could someone please tell me where to set the version
information?

Thanks!

Assemblyinfo.vb should contain <Assembly: AssemblyVersion("1.0.*")>
 
John Rugo said:
I can't figure out where in Visual Studiio .NET to set the Version
informaiton for my application?

Have a look at your project's "AssemblyInfo.vb" file.
 
Is this the only way to set the version number of an application that is
being compiled? And if so how do I get this information from the
executable, or I should ask how do I Get the Version from a procedure within
the executable that I am creating?

Thanks,
John.
 
John Rugo said:
Is this the only way to set the version number of an application that is
being compiled? And if so how do I get this information from the
executable, or I should ask how do I Get the Version from a procedure within
the executable that I am creating?

Have a look at 'Application.ProductVersion'.
 
Yes, I actually did that before even requesting help from this group. I can
get the value of the current version but, if this is indeed the current
version of my Exe, then how can I set it before compiling? I remember a
setting someplace within the Interdev environment where I could type in a
version number I wanted. I could be mistaken but I'm pretty sure I saw this
once.

Thanks,
John.
 
John Rugo said:
Yes, I actually did that before even requesting help from this group. I can
get the value of the current version but, if this is indeed the current
version of my Exe, then how can I set it before compiling? I remember a
setting someplace within the Interdev environment where I could type in a
version number I wanted. I could be mistaken but I'm pretty sure I saw this
once.

Have a look at your project's "AssemblyInfo.vb" file...
 
Back
Top