There are 3 attributes that specify version:
AssemblyInformationalVersion -
This shows up as Product Version in Windows Explorer
AssemblyVersion – This is the version number used by framework during build and at runtime to locate, link and load the assemblies
AssemblyFileVersion - This is the version number given to file as in file system. It is displayed by Windows Explorer. Its never used by .NET framework or runtime for referencing.
If You set versioning like: [assembly: AssemblyVersion("1.0.*")], It will increment during build process
You can specify this in AssemblyInfo.cs
Resources:
support.microsoft.com
MSDN Publisher Policy
StackOverFlow
No comments:
Post a Comment