AssemblyInfo.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // <summary>#SNMP Library. An open source SNMP implementation for .NET.</summary>
  2. // <copyright company="Lex Y. Li" file="AssemblyInfo.cs">Copyright (C) 2008 Lex Y. Li</copyright>
  3. //
  4. // This library is free software; you can redistribute it and/or
  5. // modify it under the terms of the GNU Lesser General Public
  6. // License as published by the Free Software Foundation; either
  7. // version 2.1 of the License, or (at your option) any later version.
  8. //
  9. // This library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. // Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public
  15. // License along with this library; if not, write to the Free Software
  16. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. #region Using directives
  18. using System;
  19. using System.Reflection;
  20. using System.Resources;
  21. using System.Runtime.CompilerServices;
  22. using System.Runtime.InteropServices;
  23. #endregion
  24. // General Information about an assembly is controlled through the following
  25. // set of attributes. Change these attribute values to modify the information
  26. // associated with an assembly.
  27. [assembly: AssemblyTitle("SharpSnmpLib")]
  28. [assembly: AssemblyDescription("#SNMP Library for .NET")]
  29. [assembly: AssemblyConfiguration("Lesser GPL 2.1+")]
  30. [assembly: AssemblyCompany("LeXtudio")]
  31. [assembly: AssemblyProduct("#SNMPLib")]
  32. [assembly: AssemblyCopyright("(C) 2008-2010 Malcolm Crowe, Lex Li, Steve Santacroce, and other contributors.")]
  33. [assembly: AssemblyTrademark("")]
  34. [assembly: AssemblyCulture("")]
  35. // This sets the default COM visibility of types in the assembly to invisible.
  36. // If you need to expose index type to COM, use [ComVisible(true)] on that type.
  37. [assembly: ComVisible(false)]
  38. // The assembly version has following format :
  39. //
  40. // Major.Minor.Build.Revision
  41. //
  42. // You can specify all the values or you can use the default the Revision and
  43. // Build Numbers by using the '*' as shown below:
  44. [assembly: AssemblyVersion("7.0.011207.31")]
  45. #if (!CF)
  46. [assembly: AssemblyFileVersion("7.0.011207.31")]
  47. #endif
  48. [assembly: NeutralResourcesLanguage("en-US")]
  49. [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Lextm")]
  50. [assembly: InternalsVisibleTo("SharpSnmpLib.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f7030532c52524"
  51. + "993841a0d09420340f3814e1b65473851bdcd18815510b035a2ae9ecee69c4cd2d9e4d6e6d5fbf"
  52. + "a564e86c4a4cddc9597619a31c060846ebb2e99511a0323ff82b1ebd95d6a4912502945f0e769f"
  53. + "190a69a439dbfb969ebad72a6f7e2e047907da4a7b9c08c6e98d5f1be8b8cafaf3eb978914059a"
  54. + "245d4bc1")]