AssemblyInfo.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. #region BSD License
  2. /*
  3. Copyright (c) 2004 - 2008
  4. Matthew Holmes ([email protected]),
  5. Dan Moorehead ([email protected]),
  6. Dave Hudson ([email protected]),
  7. Rob Loach (http://www.robloach.net),
  8. C.J. Adams-Collier ([email protected]),
  9. Redistribution and use in source and binary forms, with or without
  10. modification, are permitted provided that the following conditions are
  11. met:
  12. * Redistributions of source code must retain the above copyright
  13. notice, this list of conditions and the following disclaimer.
  14. * Redistributions in binary form must reproduce the above copyright
  15. notice, this list of conditions and the following disclaimer in the
  16. documentation and/or other materials provided with the distribution.
  17. * The name of the author may not be used to endorse or promote
  18. products derived from this software without specific prior written
  19. permission.
  20. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  21. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  22. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. DISCLAIMED. IN NO EVENT SHALL THE AUTHOR 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) ARISING
  29. IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  30. POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #endregion
  33. using System;
  34. using System.Reflection;
  35. using System.Runtime.CompilerServices;
  36. using System.Runtime.InteropServices;
  37. using System.Security.Permissions;
  38. using System.Resources;
  39. // FxCop recommended attributes
  40. [assembly: ComVisible(false)]
  41. [assembly: FileIOPermission(SecurityAction.RequestMinimum, Unrestricted=true)]
  42. [assembly: CLSCompliant(true)]
  43. //
  44. // General Information about an assembly is controlled through the following
  45. // set of attributes. Change these attribute values to modify the information
  46. // associated with an assembly.
  47. //
  48. [assembly: AssemblyTitle(".NET Prebuild")]
  49. [assembly: AssemblyDescription("A .NET project file build tool")]
  50. [assembly: AssemblyConfiguration(".NET CLR")]
  51. [assembly: AssemblyCompany("The Prebuild Project")]
  52. [assembly: AssemblyProduct("")]
  53. [assembly: AssemblyCopyright("Copyright 2004-2015 " +
  54. "Matthew Holmes, " +
  55. "Dan Moorehead, " +
  56. "C.J. Adams-Collier, " +
  57. "Rob Loach, " +
  58. "David Hudson," +
  59. "John Hurliman" +
  60. "WhiteCore Development" +
  61. "OpenSimulator developers")]
  62. [assembly: AssemblyTrademark("")]
  63. [assembly: AssemblyCulture("")]
  64. [assembly: NeutralResourcesLanguageAttribute("en-US")]
  65. [assembly: AssemblyVersion("2.0.7.*")]
  66. //
  67. // Version information for an assembly consists of the following four values:
  68. //
  69. // Major Version
  70. // Minor Version
  71. // Build Number
  72. // Revision
  73. //
  74. // You can specify all the values or you can default the Revision and Build Numbers
  75. // by using the '*' as shown below:
  76. //
  77. // In order to sign your assembly you must specify a key to use. Refer to the
  78. // Microsoft .NET Framework documentation for more information on assembly signing.
  79. //
  80. // Use the attributes below to control which key is used for signing.
  81. //
  82. // Notes:
  83. // (*) If no key is specified, the assembly is not signed.
  84. // (*) KeyName refers to a key that has been installed in the Crypto Service
  85. // Provider (CSP) on your machine. KeyFile refers to a file which contains
  86. // a key.
  87. // (*) If the KeyFile and the KeyName values are both specified, the
  88. // following processing occurs:
  89. // (1) If the KeyName can be found in the CSP, that key is used.
  90. // (2) If the KeyName does not exist and the KeyFile does exist, the key
  91. // in the KeyFile is installed into the CSP and used.
  92. // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  93. // When specifying the KeyFile, the location of the KeyFile should be
  94. // relative to the project output directory which is
  95. // %Project Directory%\obj\<configuration>. For example, if your KeyFile is
  96. // located in the project directory, you would specify the AssemblyKeyFile
  97. // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
  98. // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  99. // documentation for more information on this.
  100. //
  101. [assembly: AssemblyDelaySign(false)]
  102. [assembly: AssemblyKeyName("")]