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

Ajax

开发平台:

C#

  1. /*
  2.  * MS 06-03-10 changed assembly version to correct version from assembly info
  3.  * MS 06-04-04 fixed if external version is using different assembly name
  4.  * 
  5.  * 
  6.  */
  7. using System;
  8. namespace AjaxPro
  9. {
  10. internal sealed class Constant
  11. {
  12. /// <summary>
  13. /// The AjaxID used to save objects using a unnique key in IDictionary objects.
  14. /// </summary>
  15. internal const string AjaxID = "Ajax.NET";
  16. /// <summary>
  17. /// The assembly name to get embedded resources
  18. /// </summary>
  19. #if(NET20external)
  20. internal const string AssemblyName = "AjaxPro.2";
  21. #else
  22. internal const string AssemblyName = "AjaxPro";
  23. #endif
  24.         /// <summary>
  25. /// The assembly version.
  26. /// </summary>
  27. internal const string AssemblyVersion = "6.4.16.1";
  28. }
  29. }