using System;
using System.Runtime.InteropServices;
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: 0x02000147 RID: 327
[ComVisible(true)]
[Serializable]
public enum AssemblyVersionCompatibility
{
/// The assembly cannot execute with other versions if they are executing on the same machine.
// Token: 0x04000416 RID: 1046
SameMachine = 1,
/// The assembly cannot execute with other versions if they are executing in the same process.
// Token: 0x04000417 RID: 1047
SameProcess,
/// The assembly cannot execute with other versions if they are executing in the same application domain.
// Token: 0x04000418 RID: 1048
SameDomain
}
}