36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Defines additional version information for an assembly manifest.</summary>
|
|
// Token: 0x0200022B RID: 555
|
|
[ComVisible(true)]
|
|
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
|
|
public sealed class AssemblyInformationalVersionAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyInformationalVersionAttribute" /> class.</summary>
|
|
/// <param name="informationalVersion">The assembly version information. </param>
|
|
// Token: 0x06001D74 RID: 7540 RVA: 0x0006E1D0 File Offset: 0x0006C3D0
|
|
public AssemblyInformationalVersionAttribute(string informationalVersion)
|
|
{
|
|
this.name = informationalVersion;
|
|
}
|
|
|
|
/// <summary>Gets version information.</summary>
|
|
/// <returns>A string containing the version information.</returns>
|
|
// Token: 0x1700054A RID: 1354
|
|
// (get) Token: 0x06001D75 RID: 7541 RVA: 0x0006E1E0 File Offset: 0x0006C3E0
|
|
public string InformationalVersion
|
|
{
|
|
get
|
|
{
|
|
return this.name;
|
|
}
|
|
}
|
|
|
|
// Token: 0x040009E8 RID: 2536
|
|
private string name;
|
|
}
|
|
}
|