473,398 Members | 2,120 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

build number

How does the build number works?

right now my assembly is version
1.0.1235.33799

it doesn't change when i re-compiled it.

Thanks.
Nov 16 '05 #1
6 2597
That was compiled on May19, 2003 at 18:46:38

"Aaron" <ku*****@yahoo.com> wrote in message
news:ew**************@TK2MSFTNGP10.phx.gbl...
How does the build number works?

right now my assembly is version
1.0.1235.33799

it doesn't change when i re-compiled it.

Thanks.

Nov 16 '05 #2
how did you figure that out?

"Chris A. R." <so*****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
That was compiled on May19, 2003 at 18:46:38

"Aaron" <ku*****@yahoo.com> wrote in message
news:ew**************@TK2MSFTNGP10.phx.gbl...
How does the build number works?

right now my assembly is version
1.0.1235.33799

it doesn't change when i re-compiled it.

Thanks.


Nov 16 '05 #3
1235 days since January 1, 2000
(33799 *2) seconds since midnight (though daylight saving time/ standard
time do seem to create havoc by creating a one hour offset).

Chris A.R.

"Aaron" <ku*****@yahoo.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
how did you figure that out?

"Chris A. R." <so*****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
That was compiled on May19, 2003 at 18:46:38

"Aaron" <ku*****@yahoo.com> wrote in message
news:ew**************@TK2MSFTNGP10.phx.gbl...
How does the build number works?

right now my assembly is version
1.0.1235.33799

it doesn't change when i re-compiled it.

Thanks.



Nov 16 '05 #4
The version number is determined by settings in the AssemblyInfo (.vb or
..cs) file in the project.

===
' Version information for an assembly consists of the following four values:
'
' Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and Revision
Numbers
' by using the '*' as shown below:

<Assembly: AssemblyVersion("1.0.*")>
===

If you let the build and/or revision numbers be autogenerated (by using the
'*') then the formulas that Chris mentioned are used.

Build = number of days since Jan 1, 2000.
Revision = number of seconds since midnight divided by 2

--
Rob Windsor [MVP-VB]
G6 Consulting
Toronto, Canada
"Aaron" <ku*****@yahoo.com> wrote in message
news:ew**************@TK2MSFTNGP10.phx.gbl...
How does the build number works?

right now my assembly is version
1.0.1235.33799

it doesn't change when i re-compiled it.

Thanks.

Nov 16 '05 #5
Is there a way to find out the timestamp if I set the
build and/or revision numbers.

Thanks in advance
Alice
-----Original Message-----
The version number is determined by settings in the AssemblyInfo (.vb or..cs) file in the project.

===
' Version information for an assembly consists of the following four values:'
' Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and RevisionNumbers
' by using the '*' as shown below:

<Assembly: AssemblyVersion("1.0.*")>
===

If you let the build and/or revision numbers be autogenerated (by using the'*') then the formulas that Chris mentioned are used.

Build = number of days since Jan 1, 2000.
Revision = number of seconds since midnight divided by 2

--
Rob Windsor [MVP-VB]
G6 Consulting
Toronto, Canada
"Aaron" <ku*****@yahoo.com> wrote in message
news:ew**************@TK2MSFTNGP10.phx.gbl...
How does the build number works?

right now my assembly is version
1.0.1235.33799

it doesn't change when i re-compiled it.

Thanks.

.

Nov 16 '05 #6
Is there a way to find out the timestamp if I set the
build and/or revision numbers.

Thanks in advance
Alice
-----Original Message-----
The version number is determined by settings in the AssemblyInfo (.vb or..cs) file in the project.

===
' Version information for an assembly consists of the following four values:'
' Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and RevisionNumbers
' by using the '*' as shown below:

<Assembly: AssemblyVersion("1.0.*")>
===

If you let the build and/or revision numbers be autogenerated (by using the'*') then the formulas that Chris mentioned are used.

Build = number of days since Jan 1, 2000.
Revision = number of seconds since midnight divided by 2

--
Rob Windsor [MVP-VB]
G6 Consulting
Toronto, Canada
"Aaron" <ku*****@yahoo.com> wrote in message
news:ew**************@TK2MSFTNGP10.phx.gbl...
How does the build number works?

right now my assembly is version
1.0.1235.33799

it doesn't change when i re-compiled it.

Thanks.

.

Nov 16 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: shea martin | last post by:
Is there a way to keep track of a build number within a program? Essentially incrementing a #define everytime the program is compiled (at link time would be even better, though tougher to...
9
by: Abe Frohnman | last post by:
I'm wondering how I can access the version info within AssemblyInfo.cs in my program? I'd like to output the version of my program in a text label but I can't find any clear examples on how to do...
5
by: Aaron | last post by:
How does the build number works? right now my assembly is version 1.0.1235.33799 it doesn't change when i re-compiled it. Thanks.
2
by: Mark | last post by:
In the AssemblyInfo.cs page of a ASP.NET project, there is a defaulted property of: It's my understanding that this indicates a Major Version of 1, a Minor Version of 0, and a Build and...
8
by: Robert Misiak | last post by:
Is it possible to manually change the auto-build number used in VS.NET? Thanks, Robert
5
by: cameron | last post by:
Is it possible to get the build date, (not the version), of a dll? -Cam
8
by: S. HP | last post by:
How can I make a build number that increases for each build automatically in a ASP.NET project, as I used to have in VB 6.0 ? Regards, SAHP
4
by: Pietro | last post by:
Thanks for the last answer, but now how can i restart the count of the Build and Revision numbers of a dll in VS.Net. Thanks Pietro
3
by: prabhupr | last post by:
Hi Folks Not sure if this is the right group, if not please re-direct me to the right one. Here is my question =============== When I compile my ASP.NET WEB project from VS 2005 (.NET...
5
dlite922
by: dlite922 | last post by:
Hey guys, I've built applications and I've always wanted my own version and build number that's more like bigger applications. Requirements: 1. The version should be manual (besides...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.