A
Andrus
Assembly properties contain
[assembly: AssemblyVersion("1.0.*")]
So assembly build number in VWD2008 Express is autoincremented
automatically.
According to
http://www.geekproject.com/showtopic.aspx?ID=21
When you specify that you want to have buildnumber and revision
automatically generated then the compiler (C#) will generate buildnumber as
the number of days from the 1st of January 2000. The revision is generated
as the number of seconds from midnight divided by two, but it will NOT take
daylight savings time into account.
How to convert VS build number back to date and time ?
[assembly: AssemblyVersion("1.0.*")]
So assembly build number in VWD2008 Express is autoincremented
automatically.
According to
http://www.geekproject.com/showtopic.aspx?ID=21
When you specify that you want to have buildnumber and revision
automatically generated then the compiler (C#) will generate buildnumber as
the number of days from the 1st of January 2000. The revision is generated
as the number of seconds from midnight divided by two, but it will NOT take
daylight savings time into account.
How to convert VS build number back to date and time ?