using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Configuration.Assemblies
{
/// Defines the different types of assembly version compatibility. This feature is not available in version 1.0 of the .NET Framework.
// Token: 0x020001C2 RID: 450
[Token(Token = "0x20001C2")]
[ComVisible(true)]
[Serializable]
public enum AssemblyVersionCompatibility
{
/// The assembly cannot execute with other versions if they are executing on the same machine.
// Token: 0x040008DD RID: 2269
[Token(Token = "0x40008DD")]
SameMachine = 1,
/// The assembly cannot execute with other versions if they are executing in the same process.
// Token: 0x040008DE RID: 2270
[Token(Token = "0x40008DE")]
SameProcess,
/// The assembly cannot execute with other versions if they are executing in the same application domain.
// Token: 0x040008DF RID: 2271
[Token(Token = "0x40008DF")]
SameDomain
}
}