
How to make build autoincrement version or build number
By default, the value in Assembly.vb is 1.0.*. This will autoincrement the
build just as the original post asked.
If you think that the build number generated in your test (1.0.0.15535) is
meaningless, I would have to question whether or not you understand the
purpose behind build numbers.
--
Jim
Jimco Add-ins
http://www.jimcoaddins.com
==============================================
New FrontPage Add-ins Available:
Close All (with Save and Close All included)
ContextExport (Adds Export menu to context menus.)
New Visual Studio.NET Add-in:
Close All add-in for VS.NET now available!
==============================================
Quote:
> Unfortunately, this is incorrect.
> I just compiled an app with AssemblyVersion("1.0.0.0") and the end result
> was just that - 1.0.0.0.
> I then changed it to '1.0.0.*' and re-compiled. The version was
> '1.0.0.15535' i.e. based on the time and thus meaningless.
> Jeff Law
> PPCInstall Developer
> http://www.ppcinstall.com
> > It's in the Assembly.vb file. Any asterisk in the version number will
be
> > automatically incremented.
> > --
> > Jim
> > Jimco Add-ins
> > http://www.jimcoaddins.com
> > ==============================================
> > New FrontPage Add-ins Available:
> > Close All (with Save and Close All included)
> > ContextExport (Adds Export menu to context menus.)
> > New Visual Studio.NET Add-in:
> > Close All add-in for VS.NET now available!
> > ==============================================
> > > Every time I build my solution, I would like it to autoincrement the
> build
> > > number. I used to do something similar in VB6, but can't figure out
how
> > to
> > > increment the build (or private part) in VB.NET. Suggestions?