AssemblyInfo.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Reflection;
  3. using System.Runtime.InteropServices;
  4. using System.Runtime.CompilerServices;
  5. // General Information about an assembly is controlled through the following
  6. // set of attributes. Change these attribute values to modify the information
  7. // associated with an assembly.
  8. [assembly: AssemblyTitle("protobuf-net")]
  9. [assembly: AssemblyDescription("Protocol Buffers for .NET")]
  10. [assembly: AssemblyConfiguration("")]
  11. [assembly: AssemblyCompany("Marc Gravell")]
  12. [assembly: AssemblyProduct("protobuf-net")]
  13. [assembly: AssemblyCopyright("See http://code.google.com/p/protobuf-net/")]
  14. [assembly: AssemblyTrademark("")]
  15. [assembly: AssemblyCulture("")]
  16. #if !PORTABLE
  17. // Setting ComVisible to false makes the types in this assembly not visible
  18. // to COM components. If you need to access a type in this assembly from
  19. // COM, set the ComVisible attribute to true on that type.
  20. [assembly: ComVisible(false)]
  21. #if !COREFX
  22. // The following GUID is for the ID of the typelib if this project is exposed to COM
  23. [assembly: Guid("224e5fc5-09f7-4fe3-a0a3-cf72b9f3593e")]
  24. #endif
  25. #endif
  26. // Version information for an assembly consists of the following four values:
  27. //
  28. // Major Version
  29. // Minor Version
  30. // Build Number
  31. // Revision
  32. //
  33. // You can specify all the values or you can default the Build and Revision Numbers
  34. // by using the '*' as shown below:
  35. // [assembly: AssemblyVersion("1.0.*")]
  36. [assembly: AssemblyVersion("2.0.0.668")]
  37. #if !CF
  38. [assembly: AssemblyFileVersion("2.0.0.668")]
  39. #endif
  40. #if !FX11
  41. #if XUNIT
  42. [assembly: InternalsVisibleTo("Tests.Dnx, PublicKey="
  43. + "002400000480000094000000060200000024000052534131000400000100010009ed9caa457bfc"
  44. + "205716c3d4e8b255a63ddf71c9e53b1b5f574ab6ffdba11e80ab4b50be9c46d43b75206280070d"
  45. + "dba67bd4c830f93f0317504a76ba6a48243c36d2590695991164592767a7bbc4453b34694e31e2"
  46. + "0815a096e4483605139a32a76ec2fef196507487329c12047bf6a68bca8ee9354155f4d01daf6e"
  47. + "ec5ff6bc")]
  48. #else
  49. [assembly: InternalsVisibleTo("protobuf-net.unittest, PublicKey="
  50. + "002400000480000094000000060200000024000052534131000400000100010009ed9caa457bfc"
  51. + "205716c3d4e8b255a63ddf71c9e53b1b5f574ab6ffdba11e80ab4b50be9c46d43b75206280070d"
  52. + "dba67bd4c830f93f0317504a76ba6a48243c36d2590695991164592767a7bbc4453b34694e31e2"
  53. + "0815a096e4483605139a32a76ec2fef196507487329c12047bf6a68bca8ee9354155f4d01daf6e"
  54. + "ec5ff6bc")]
  55. #endif
  56. #endif
  57. [assembly: CLSCompliant(false)]