Explain the format of the assembly version stored in the AssemblyInfo file.AssemblyVersion/AssemblyFileVersion Format : [MajorVersion].[MinorVersion].[BuildVersion].[RevisionVersion] If the assembly is changes such that it’s incompatible with previous versions then MajorVersion or MinorVersion must be changed. If the assembly is still compatible with previous version then BuildVersion or RevisionNumber must be changed.
|