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 18 #region Using directives 19 20 using System; 21 using System.Reflection; 22 using System.Resources; 23 using System.Runtime.CompilerServices; 24 using System.Runtime.InteropServices; 25 26 #endregion 27 28 // General Information about an assembly is controlled through the following 29 // set of attributes. Change these attribute values to modify the information 30 // associated with an assembly. 31 [assembly: AssemblyTitle("SharpSnmpLib")] 32 [assembly: AssemblyDescription("#SNMP Library for .NET")] 33 [assembly: AssemblyConfiguration("Lesser GPL 2.1+")] 34 [assembly: AssemblyCompany("LeXtudio")] 35 [assembly: AssemblyProduct("#SNMPLib")] 36 [assembly: AssemblyCopyright("(C) 2008-2010 Malcolm Crowe, Lex Li, Steve Santacroce, and other contributors.")] 37 [assembly: AssemblyTrademark("")] 38 [assembly: AssemblyCulture("")] 39 40 // This sets the default COM visibility of types in the assembly to invisible. 41 // If you need to expose index type to COM, use [ComVisible(true)] on that type. 42 [assembly: ComVisible(false)] 43 44 // The assembly version has following format : 45 // 46 // Major.Minor.Build.Revision 47 // 48 // You can specify all the values or you can use the default the Revision and 49 // Build Numbers by using the '*' as shown below: 50 [assembly: AssemblyVersion("7.0.011207.31")] 51 #if (!CF) 52 [assembly: AssemblyFileVersion("7.0.011207.31")] 53 #endif 54 [assembly: NeutralResourcesLanguage("en-US")] 55 [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Lextm")] 56 57 [assembly: InternalsVisibleTo("SharpSnmpLib.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f7030532c52524" 58 + "993841a0d09420340f3814e1b65473851bdcd18815510b035a2ae9ecee69c4cd2d9e4d6e6d5fbf" 59 + "a564e86c4a4cddc9597619a31c060846ebb2e99511a0323ff82b1ebd95d6a4912502945f0e769f" 60 + "190a69a439dbfb969ebad72a6f7e2e047907da4a7b9c08c6e98d5f1be8b8cafaf3eb978914059a" 61 + "245d4bc1")] 62