The AssemblyFileVersion and AssemblyInformationalVersion attributes do not allow the use of '*'.

To get your Assembly to auto generate the build and revision numbers use '*' in the AssemblyVersion attribute.

C# Code:
  1. [assembly: AssemblyVersion("1.0.0.*")]

Hope this helped.