I am setting assembly and file version of .net assembly as below,
[assembly: AssemblyVersion("9.05.115.0")]
[assembly: AssemblyFileVersion("9.05.115.0")]
After installing build, I was viewing the file details of the deployed files. I found that the Product Version is displayed correctly 9.05.115.0.
However, the File Version is displayed as 9.5.115.0. So why there no leading zero for “05” in the file version.
Is there any reason? Or Am I missing something?