473,385 Members | 1,356 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,385 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 2596
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...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

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.