AssemblyInfo.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Mentalis.org Packet Monitor
  3. *
  4. * Copyright © 2003, The KPD-Team
  5. * All rights reserved.
  6. * http://www.mentalis.org/
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * - Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * - Neither the name of the KPD-Team, nor the names of its contributors
  16. * may be used to endorse or promote products derived from this
  17. * software without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  22. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  23. * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  24. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  25. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  26. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  28. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  29. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  30. * OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. using System.Reflection;
  33. using System.Runtime.CompilerServices;
  34. //
  35. // General Information about an assembly is controlled through the following
  36. // set of attributes. Change these attribute values to modify the information
  37. // associated with an assembly.
  38. //
  39. [assembly: AssemblyTitle("Mentalis.org Packet Monitor")]
  40. [assembly: AssemblyDescription("Windows NT IP packet monitor")]
  41. [assembly: AssemblyConfiguration("")]
  42. [assembly: AssemblyCompany("The KPD-Team")]
  43. [assembly: AssemblyProduct("Packet Monitor")]
  44. [assembly: AssemblyCopyright("Copyright © 2003, The KPD-Team")]
  45. [assembly: AssemblyTrademark("")]
  46. [assembly: AssemblyCulture("")]
  47. //
  48. // Version information for an assembly consists of the following four values:
  49. //
  50. // Major Version
  51. // Minor Version
  52. // Build Number
  53. // Revision
  54. //
  55. // You can specify all the values or you can default the Revision and Build Numbers
  56. // by using the '*' as shown below:
  57. [assembly: AssemblyVersion("1.1.*")]
  58. //
  59. // In order to sign your assembly you must specify a key to use. Refer to the
  60. // Microsoft .NET Framework documentation for more information on assembly signing.
  61. //
  62. // Use the attributes below to control which key is used for signing.
  63. //
  64. // Notes:
  65. // (*) If no key is specified, the assembly is not signed.
  66. // (*) KeyName refers to a key that has been installed in the Crypto Service
  67. // Provider (CSP) on your machine. KeyFile refers to a file which contains
  68. // a key.
  69. // (*) If the KeyFile and the KeyName values are both specified, the
  70. // following processing occurs:
  71. // (1) If the KeyName can be found in the CSP, that key is used.
  72. // (2) If the KeyName does not exist and the KeyFile does exist, the key
  73. // in the KeyFile is installed into the CSP and used.
  74. // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  75. // When specifying the KeyFile, the location of the KeyFile should be
  76. // relative to the project output directory which is
  77. // %Project Directory%\obj\<configuration>. For example, if your KeyFile is
  78. // located in the project directory, you would specify the AssemblyKeyFile
  79. // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
  80. // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  81. // documentation for more information on this.
  82. //
  83. [assembly: AssemblyDelaySign(false)]
  84. [assembly: AssemblyKeyFile("")]
  85. [assembly: AssemblyKeyName("")]