0 out of 2 rated this helpful - Rate this topic

AssemblyVersionAttribute Constructor

Initializes a new instance of the AssemblyVersionAttribute class with the version number of the assembly being attributed.

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)
public AssemblyVersionAttribute(
	string version
)

Parameters

version
Type: System.String
The version number of the attributed assembly.

The format of the version string is: major. minor. build. revision.

When specifying a version, you have to at least specify major. If you specify major and minor, you can specify an asterisk (*) for build. This will cause build to be equal to the number of days since January 1, 2000 local time, and for revision to be equal to the number of seconds since midnight local time, divided by 2.

If you specify major, minor, and build, you can specify an asterisk for revision. This will cause revision to be equal to the number of seconds since midnight local time, divided by 2.

Examples of valid version strings include:

1

1.1

1.1.*

1.1.1

1.1.1.*

1.1.1.1

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
All fragments of the version must parse as UInt16 and be < MaxValue
Don't assume the version format implies the use of the System.Version type.

The fragments of the version number (major.minor.build.revision) must all successfully parse as unsigned, 16-bit integers, and be less than the UInt16.MaxValue.

This is different than the System.Version class where each of those fragments are of type Int32.