AssemblyInfo.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. // Copyright (c) 2007-2012 Michael Chapman
  2. // http://ipaddresscontrollib.googlecode.com
  3. // Permission is hereby granted, free of charge, to any person obtaining
  4. // a copy of this software and associated documentation files (the
  5. // "Software"), to deal in the Software without restriction, including
  6. // without limitation the rights to use, copy, modify, merge, publish,
  7. // distribute, sublicense, and/or sell copies of the Software, and to
  8. // permit persons to whom the Software is furnished to do so, subject to
  9. // the following conditions:
  10. // The above copyright notice and this permission notice shall be
  11. // included in all copies or substantial portions of the Software.
  12. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  13. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  14. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  15. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  16. // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  17. // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  18. // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. using System;
  20. using System.Diagnostics;
  21. using System.Reflection;
  22. using System.Runtime.CompilerServices;
  23. using System.Runtime.InteropServices;
  24. using System.Resources;
  25. // General Information about an assembly is controlled through the following
  26. // set of attributes. Change these attribute values to modify the information
  27. // associated with an assembly.
  28. [assembly: AssemblyTitle("IPAddressControlLib")]
  29. [assembly: AssemblyDescription("")]
  30. [assembly: AssemblyConfiguration("")]
  31. [assembly: AssemblyCompany("")]
  32. [assembly: AssemblyProduct("IPAddressControlLib")]
  33. [assembly: AssemblyCopyright( "Copyright © 2007-2012 Michael Chapman" )]
  34. [assembly: AssemblyTrademark("")]
  35. [assembly: AssemblyCulture("")]
  36. // Setting ComVisible to false makes the types in this assembly not visible
  37. // to COM components. If you need to access a type in this assembly from
  38. // COM, set the ComVisible attribute to true on that type.
  39. [assembly: ComVisible(false)]
  40. // The following GUID is for the ID of the typelib if this project is exposed to COM
  41. [assembly: Guid("7fd0e876-f196-409e-953f-fe4113e2522d")]
  42. // Version information for an assembly consists of the following four values:
  43. //
  44. // Major Version
  45. // Minor Version
  46. // Build Number
  47. // Revision
  48. //
  49. // You can specify all the values or you can default the Build and Revision Numbers
  50. // by using the '*' as shown below:
  51. // [assembly: AssemblyVersion("1.0.*")]
  52. [assembly: AssemblyVersion("1.2.*")]
  53. //[assembly: AssemblyFileVersion("1.0.0.0")]
  54. [assembly: CLSCompliant(true)]
  55. [assembly: NeutralResourcesLanguageAttribute("en-US")]
  56. [module: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1020:AvoidNamespacesWithFewTypes", Scope = "namespace", Target = "IPAddressControlLib")]