I have the following line in my assembly.cpp.
[assembly:AssemblyVersionAttribute("1.0.*")];
The * allows the build number to be automatically included. Is there
any way to reset this build number? If so, how?

Signature
Bruce E. Stemplewski
GarXface OCX and C++ Class Library for the Garmin GPS
www.stempsoft.com
> I have the following line in my assembly.cpp.
>
> [assembly:AssemblyVersionAttribute("1.0.*")];
>
> The * allows the build number to be automatically included. Is there
> any way to reset this build number? If so, how?
No, there is not. The two fields that VS appends automatically are derived
from the date and time. So, in 1.0.xxxx.yyyyy, xxxx is the number of days
since some time in the past (could be the Unix Epoch 1/1/1970, but IIRC it's
another date). yyyyy is the number of seconds since midnight in some
particular time zone. Oddly, when I investigated it, it didn't seem to be
using GMT or the local TZ, but some other, specific TZ.
-cd
Bruce - 30 Dec 2006 03:36 GMT
> No, there is not. The two fields that VS appends automatically are derived
> from the date and time. So, in 1.0.xxxx.yyyyy, xxxx is the number of days
[quoted text clipped - 4 lines]
>
> -cd
Thanks,
I was wondering what the number represented. Your explanation makes
some sense out of the number.
Bruce

Signature
Bruce E. Stemplewski
GarXface OCX and C++ Class Library for the Garmin GPS
www.stempsoft.com