36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Specifies the build configuration, such as retail or debug, for an assembly.</summary>
|
|
// Token: 0x02000224 RID: 548
|
|
[ComVisible(true)]
|
|
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
|
|
public sealed class AssemblyConfigurationAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyConfigurationAttribute" /> class.</summary>
|
|
/// <param name="configuration">The assembly configuration. </param>
|
|
// Token: 0x06001D63 RID: 7523 RVA: 0x0006E0F0 File Offset: 0x0006C2F0
|
|
public AssemblyConfigurationAttribute(string configuration)
|
|
{
|
|
this.name = configuration;
|
|
}
|
|
|
|
/// <summary>Gets assembly configuration information.</summary>
|
|
/// <returns>A string containing the assembly configuration information.</returns>
|
|
// Token: 0x17000542 RID: 1346
|
|
// (get) Token: 0x06001D64 RID: 7524 RVA: 0x0006E100 File Offset: 0x0006C300
|
|
public string Configuration
|
|
{
|
|
get
|
|
{
|
|
return this.name;
|
|
}
|
|
}
|
|
|
|
// Token: 0x040009E1 RID: 2529
|
|
private string name;
|
|
}
|
|
}
|