Propably a stupid question but here it goes.
I have a blank console application and I added to the AssemlyInfo.cs file this line of code.
[assembly: AssemblyVersion("1.0.*")]
I'm wondering at what point gets the number incremented ?
Propably a stupid question but here it goes.
I have a blank console application and I added to the AssemlyInfo.cs file this line of code.
[assembly: AssemblyVersion("1.0.*")]
I'm wondering at what point gets the number incremented ?
It will be updated every day / build.
From MSDN:
A version number such as
[assembly:AssemblyVersion("1.2.*")]
specifies 1 as the major version, 2 as the minor version, and accepts the default build and revision numbers. A version number such as[assembly:AssemblyVersion("1.2.15.*")]
specifies 1 as the major version, 2 as the minor version, 15 as the build number, and accepts the default revision number. The default build number increments daily. The default revision number is random.
Edit: As of Framework 4.5, the revision number is no longer random; it is the number of seconds since midnight, divided by 2.