MS.StrongNameRegistry.cs

1  using System;2  3  namespace MS.StrongName4  {5       /// <summary>6       ///      Constants for the configuraiton registry keys7       /// </summary>8      internal static class Registry9      {10           /// <summary>11           ///      Name of the registry key under HKLM where strong name settings are stored12           /// </summary>13          public const string ConfigurationKey = @"Software\Microsoft\StrongName";14  15           /// <summary>16           ///      DWORD value that determines if the machine or user key store should be used17           /// </summary>18          public const string MachineKeySet = "MachineKeyset";19      }20  }