This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,18 @@
using System;
namespace System.Runtime.InteropServices
{
/// <summary>Defines a set of flags used when registering assemblies.</summary>
// Token: 0x020002EE RID: 750
[ComVisible(true)]
[Flags]
public enum AssemblyRegistrationFlags
{
/// <summary>Indicates no special settings.</summary>
// Token: 0x04000CBC RID: 3260
None = 0,
/// <summary>Indicates that the code base key for the assembly should be set in the registry.</summary>
// Token: 0x04000CBD RID: 3261
SetCodeBase = 1
}
}