AssemblyInfo.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. Copyright (c) 2013, 2014 Paolo Patierno
  3. All rights reserved. This program and the accompanying materials
  4. are made available under the terms of the Eclipse Public License v1.0
  5. and Eclipse Distribution License v1.0 which accompany this distribution.
  6. The Eclipse Public License is available at
  7. http://www.eclipse.org/legal/epl-v10.html
  8. and the Eclipse Distribution License is available at
  9. http://www.eclipse.org/org/documents/edl-v10.php.
  10. Contributors:
  11. Paolo Patierno - initial API and implementation and/or initial documentation
  12. */
  13. using System.Reflection;
  14. using System.Runtime.CompilerServices;
  15. using System.Runtime.InteropServices;
  16. // General Information about an assembly is controlled through the following
  17. // set of attributes. Change these attribute values to modify the information
  18. // associated with an assembly.
  19. [assembly: AssemblyTitle("M2Mqtt")]
  20. [assembly: AssemblyDescription("MQTT Client Library for M2M communication")]
  21. [assembly: AssemblyConfiguration("")]
  22. [assembly: AssemblyCompany("Paolo Patierno")]
  23. [assembly: AssemblyProduct("M2Mqtt")]
  24. // Version information for an assembly consists of the following four values:
  25. //
  26. // Major Version
  27. // Minor Version
  28. // Build Number
  29. // Revision
  30. //
  31. [assembly: AssemblyVersion("4.3.0.0")]
  32. // to avoid compilation error (AssemblyFileVersionAttribute doesn't exist) under .Net CF 3.5
  33. #if !WindowsCE
  34. [assembly: AssemblyFileVersion("4.3.0.0")]
  35. #endif