Auto increment Application Minor ou Build?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Is it possible to Auto Increment the Build Version or Minor Version (when I compile .NET will increment one of this values)

Thanks
 
Bernardo,

Look in the AssemblyInfo.cs file in your project and you will find an
attribute called AssemblyVersion along with comments on how to use
it to have automatic increment.

HTH,

//Andreas

Bernardo said:
Hi,

Is it possible to Auto Increment the Build Version or Minor Version (when
I compile .NET will increment one of this values)?
 
Andreas Håkansson said:
Bernardo,

Look in the AssemblyInfo.cs file in your project and you will find an
attribute called AssemblyVersion along with comments on how to use
it to have automatic increment.

HTH,

Except you should never do this, since it increments the AssemblyVersion
which controls the version compatablility for library assemblies, instead of
the AssemblyFileVersion which is for keeping track of build numbers.

David
 
Back
Top