I have this sample configuration in my assemblyinfo file.
// 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("3.1.0.*")]
[assembly: AssemblyFileVersion("3.1.0.0")]
Once I rebuild, I get this:
Fileversion: 3.1.0.0 Product version: 3.1.0.0
What I would like is the product version to be static, this is already fine, but I would like the file version to automatically increment, is this possible?
Assembly version is good for technical analysis, but file version is an NTFS property visible by right clicking the file in windows explorer, so customers and consultants can get an idea of the version without using a 3rd party tool.