a
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration.Assemblies
|
||||
{
|
||||
/// <summary>Defines the different types of assembly version compatibility. This feature is not available in version 1.0 of the .NET Framework.</summary>
|
||||
// Token: 0x020001BB RID: 443
|
||||
[Token(Token = "0x20001BB")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public enum AssemblyVersionCompatibility
|
||||
{
|
||||
/// <summary>The assembly cannot execute with other versions if they are executing on the same machine.</summary>
|
||||
// Token: 0x040008D3 RID: 2259
|
||||
[Token(Token = "0x40008D3")]
|
||||
SameMachine = 1,
|
||||
/// <summary>The assembly cannot execute with other versions if they are executing in the same process.</summary>
|
||||
// Token: 0x040008D4 RID: 2260
|
||||
[Token(Token = "0x40008D4")]
|
||||
SameProcess,
|
||||
/// <summary>The assembly cannot execute with other versions if they are executing in the same application domain.</summary>
|
||||
// Token: 0x040008D5 RID: 2261
|
||||
[Token(Token = "0x40008D5")]
|
||||
SameDomain
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user