Developer, Former MVP, now at Microsoft - Best of 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
Namespace System.Reflection
<AttributeUsage(AttributeTargets.Assembly, AllowMultiple:=False)> _
Public Class AssemblyFileVersionAttribute
Inherits Attribute
Private mVersion As String
Public ReadOnly Property Version() As String
Get
Return mVersion
End Get
End Property
Sub New(ByVal aVersion As String)
If aVersion Is Nothing Then
Throw New ArgumentNullException("version")
End If
mVersion = aVersion
End Sub
End Class
End Namespace