MS.StrongNameNativeStrongNameKeyGenFlags.cs

 1  using System;
2  
3  namespace MS.StrongName.Native
4  {
5       /// <summary>
6       ///      Flags for use with strong name key gneeration methods
7       /// </summary>
8      [Flags]
9      internal enum StrongNameKeyGenFlags : int
10      {
11           /// <summary>
12           ///      No flags
13           /// </summary>
14          None        = 0x00000000,
15  
16           /// <summary>
17           ///      Save the key in the key container
18           /// </summary>
19          LeaveKey    = 0x00000001
20      }
21  }