This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,35 @@
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;
}
}