31 lines
1.2 KiB
C#
31 lines
1.2 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Instructs a compiler to use a specific version number for the Win32 file version resource. The Win32 file version is not required to be the same as the assembly's version number.</summary>
|
|
// Token: 0x0200020E RID: 526
|
|
[Token(Token = "0x200020E")]
|
|
[ComVisible(true)]
|
|
[AttributeUsage(AttributeTargets.Assembly)]
|
|
public sealed class AssemblyFileVersionAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyFileVersionAttribute" /> class, specifying the file version.</summary>
|
|
/// <param name="version">The file version.</param>
|
|
/// <exception cref="T:System.ArgumentNullException">
|
|
/// <paramref name="version" /> is <see langword="null" />.</exception>
|
|
// Token: 0x060013C1 RID: 5057 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60013C1")]
|
|
[Address(RVA = "0x2A009F0", Offset = "0x29FF7F0", VA = "0x182A009F0")]
|
|
public AssemblyFileVersionAttribute(string version)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000A11 RID: 2577
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000A11")]
|
|
private string _version;
|
|
}
|
|
}
|