How do you find out the build number?

jace808

Freshman
Joined
Jul 6, 2003
Messages
37
Location
SC, USA
Why is it that this gives me a version, but the version number never changes?? The version is always 1.0.3705.0 no matter how many times I save or build the app..

Visual Basic:
lblVersion.Text = Version.ToString
 
Visual Basic:
Application.ProductVersion.ToString

This will give you the build number of the project you are making located in the AssemblyInfo

Version.ToString will give you the framework version its running on

Regards

Andy
 
Back
Top