Mark assemblies with assembly version
| TypeName | MarkAssembliesWithAssemblyVersion |
| CheckId | CA1016 |
| Category | Microsoft.Design |
| Breaking Change | NonBreaking |
The identity of an assembly is composed of the following information:
-
Assembly name
-
Version number
-
Culture
-
Public key (for strong-named assemblies).
The .NET Framework uses the version number to uniquely identify an assembly, and to bind to types in strong-named assemblies. The version number is used toghether with version and publisher policy. By default, applications run only with the assembly version with which they were built.
To fix a violation of this rule, add a version number to the assembly using the System.Reflection.AssemblyKeyFileAttribute attribute. See the followihg example.
The following example shows an assemble with the AssemblyVersionAttribute attribute applied.