AssemblyInfo.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:3k
源码类别:

Ajax

开发平台:

C#

  1. /*
  2.  * MS 06-04-03 fixed missing http error status code in core.js
  3.  * MS 06-04-04 added AjaxPro.onError, onTimeout, onStateChanged, onLoading to core.js
  4.  * MS 06-04-05 removed Object.prototype.extend from prototype.js and all othere files using this
  5.  * method
  6.  * MS 06-04-11 fixed core.js bug if http status != 200
  7.  * 
  8.  * 
  9.  * 
  10.  */
  11. using System.Reflection;
  12. using System.Runtime.CompilerServices;
  13. //
  14. // General Information about an assembly is controlled through the following 
  15. // set of attributes. Change these attribute values to modify the information
  16. // associated with an assembly.
  17. //
  18. #if(NET20)
  19. [assembly: AssemblyTitle("Ajax.NET Professional for .NET 2.0")]
  20. #else
  21. [assembly: AssemblyTitle("Ajax.NET Professional for .NET 1.1")]
  22. #endif
  23. [assembly: AssemblyDescription(".NET Library that provides AJAX related methods to simplify the communication between server and client.")]
  24. [assembly: AssemblyConfiguration("")]
  25. [assembly: AssemblyCompany("Michael Schwarz")]
  26. [assembly: AssemblyProduct("Ajax.NET Professional")]
  27. [assembly: AssemblyCopyright("2006, Michael Schwarz")]
  28. [assembly: AssemblyTrademark("")]
  29. [assembly: AssemblyCulture("")]
  30. [assembly: System.Security.AllowPartiallyTrustedCallersAttribute()]
  31. //
  32. // Version information for an assembly consists of the following four values:
  33. //
  34. //      Major Version
  35. //      Minor Version 
  36. //      Build Number
  37. //      Revision
  38. //
  39. // You can specify all the values or you can default the Revision and Build Numbers 
  40. // by using the '*' as shown below:
  41. [assembly: AssemblyVersion("6.4.16.1")]
  42. //
  43. // In order to sign your assembly you must specify a key to use. Refer to the 
  44. // Microsoft .NET Framework documentation for more information on assembly signing.
  45. //
  46. // Use the attributes below to control which key is used for signing. 
  47. //
  48. // Notes: 
  49. //   (*) If no key is specified, the assembly is not signed.
  50. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  51. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  52. //       a key.
  53. //   (*) If the KeyFile and the KeyName values are both specified, the 
  54. //       following processing occurs:
  55. //       (1) If the KeyName can be found in the CSP, that key is used.
  56. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  57. //           in the KeyFile is installed into the CSP and used.
  58. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  59. //       When specifying the KeyFile, the location of the KeyFile should be
  60. //       relative to the project output directory which is
  61. //       %Project Directory%obj<configuration>. For example, if your KeyFile is
  62. //       located in the project directory, you would specify the AssemblyKeyFile 
  63. //       attribute as [assembly: AssemblyKeyFile("..\..\mykey.snk")]
  64. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  65. //       documentation for more information on this.
  66. //
  67. [assembly: AssemblyDelaySign(false)]
  68. #if(NET20)
  69. [assembly: AssemblyKeyFile("michael.schwarz.snk")]
  70. #else
  71. [assembly: AssemblyKeyFile("michael.schwarz.snk")]
  72. #endif
  73. [assembly: AssemblyKeyName("")]