AssemblyInfo.cs 1.0 KB

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Reflection;
  3. using System.Runtime.CompilerServices;
  4. [assembly: AssemblyTitle("SharpCompress")]
  5. [assembly: AssemblyProduct("SharpCompress")]
  6. [assembly: InternalsVisibleTo("SharpCompress.Test" + SharpCompress.AssemblyInfo.PublicKeySuffix)]
  7. [assembly: InternalsVisibleTo("SharpCompress.Test.Portable" + SharpCompress.AssemblyInfo.PublicKeySuffix)]
  8. [assembly: CLSCompliant(true)]
  9. namespace SharpCompress
  10. {
  11. /// <summary>
  12. /// Just a static class to house the public key, to avoid repetition.
  13. /// </summary>
  14. internal static class AssemblyInfo
  15. {
  16. internal const string PublicKeySuffix =
  17. ",PublicKey=002400000480000094000000060200000024000052534131000400000100010059acfa17d26c44" +
  18. "7a4d03f16eaa72c9187c04f16e6569dd168b080e39a6f5c9fd00f28c768cd8e9a089d5a0e1b34c" +
  19. "cd971488e7afe030ce5ce8df2053cf12ec89f6d38065c434c09ee6af3ee284c5dc08f44774b679" +
  20. "bf39298e57efe30d4b00aecf9e4f6f8448b2cb0146d8956dfcab606cc64a0ac38c60a7d78b0d65" +
  21. "d3b98dc0";
  22. }
  23. }