Auto Incrementing a project's version number

EmmaLawton

Member
Joined
Jun 9, 2004
Messages
5
Programming Experience
5-10
In VB6 when you built your executable, dll or whatever, you could check a checkbox that would auto increment the version number. Does that exist in VB.net 2003?

Thanks
Emma
 
Yes this is in VB.net, the values are in the assemble info file in the solution.
line like 1.0.*.*

this means that the * values are generated by the compiler and would be different each time you rebuild the solution.

Mykre
 
The current minor version can be found by viewing the properties of the file (executable or dll). I can't think of anywhere it is displayed in the IDE. You could also do it via code, but I think viewing the properties is simpler.
 
Back
Top