What is version number in Vs.Net and explain them.what is the first digit number indicates

Questions by mudduswamy   answers by mudduswamy

Showing Answers 1 - 3 of 3 Answers

NoOne

  • Feb 24th, 2007
 

public AssemblyVersionAttribute (string version)

The format of the version string is: major. minor. build. revision.

When specifying a version, you have to at least specify major. If you specify major and minor, you can specify an asterisk (*) for build. This will cause build to be equal to the number of days since January 1, 2000 local time, and for revision to be equal to the number of seconds since midnight local time, divided by 2.

If you specify major, minor, and build, you can specify an asterisk for revision. This will cause revision to be equal to the number of seconds since midnight local time, divided by 2.

Examples of valid version strings include:

1
1.1
1.1.*
1.1.1
1.1.1.*
1.1.1.1

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions