AssemblyInfo.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. [assembly: AssemblyCopyright("Copyright © Paolo Patierno 2014")]
  25. [assembly: AssemblyTrademark("")]
  26. [assembly: AssemblyCulture("")]
  27. // Version information for an assembly consists of the following four values:
  28. //
  29. // Major Version
  30. // Minor Version
  31. // Build Number
  32. // Revision
  33. //
  34. [assembly: AssemblyVersion("4.2.0.0")]
  35. // to avoid compilation error (AssemblyFileVersionAttribute doesn't exist) under .Net CF 3.5
  36. #if !WindowsCE
  37. [assembly: AssemblyFileVersion("4.2.0.0")]
  38. #endif