Possible Duplicate:
Assembly Version Details
How to create a build version in VS / .NET? I know that there are several lines in AssemblyInfo.cs or AssemblyInfo.vb with something like this:
' 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.*")>
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
But how is the final build created? How does it increase? Where is the last value stored? We have a regular internal release environment, and I would like to customize the build version ... I searched google but couldn't find anything ... Any pointers?
Denis source
share