AssemblyInfo.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. //
  2. // AssemblyInfo.cs
  3. //
  4. // Author:
  5. // Igor Zelmanovich <[email protected]>
  6. //
  7. // (C) 2007 Mainsoft, Inc. http://www.mainsoft.com
  8. //
  9. //
  10. // Permission is hereby granted, free of charge, to any person obtaining
  11. // a copy of this software and associated documentation files (the
  12. // "Software"), to deal in the Software without restriction, including
  13. // without limitation the rights to use, copy, modify, merge, publish,
  14. // distribute, sublicense, and/or sell copies of the Software, and to
  15. // permit persons to whom the Software is furnished to do so, subject to
  16. // the following conditions:
  17. //
  18. // The above copyright notice and this permission notice shall be
  19. // included in all copies or substantial portions of the Software.
  20. //
  21. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. //
  29. using System.Reflection;
  30. using System.Runtime.CompilerServices;
  31. using System.Runtime.InteropServices;
  32. using System.Resources;
  33. using System;
  34. using System.Diagnostics;
  35. using System.Web.UI;
  36. using System.Security;
  37. using System.Security.Permissions;
  38. // General Information about the System.Web.Extensions assembly
  39. // v3.5 Assembly
  40. [assembly: AssemblyTitle ("System.Web.Extensions.dll")]
  41. [assembly: AssemblyDescription ("System.Web.Extensions.dll")]
  42. [assembly: AssemblyDefaultAlias ("System.Web.Extensions.dll")]
  43. [assembly: AssemblyCompany (Consts.MonoCompany)]
  44. [assembly: AssemblyProduct (Consts.MonoProduct)]
  45. [assembly: AssemblyCopyright (Consts.MonoCopyright)]
  46. #if NET_3_5
  47. [assembly: AssemblyVersion (Consts.FxVersion)]
  48. [assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
  49. #else
  50. [assembly: AssemblyVersion ("1.0.61025.0")]
  51. [assembly: AssemblyInformationalVersion ("1.0.61025.0")]
  52. #endif
  53. [assembly: SatelliteContractVersion (Consts.FxVersion)]
  54. [assembly: AssemblyFileVersion (Consts.FxFileVersion)]
  55. [assembly: NeutralResourcesLanguage ("en-US")]
  56. #if !(TARGET_JVM || TARGET_DOTNET)
  57. [assembly: CLSCompliant (true)]
  58. [assembly: AssemblyDelaySign (true)]
  59. [assembly: AssemblyKeyFile ("../winfx.pub")]
  60. #endif
  61. [assembly: ComVisible (false)]
  62. [assembly: AllowPartiallyTrustedCallers]
  63. [assembly: TagPrefix ("System.Web.UI", "asp")]
  64. [assembly: TagPrefix ("System.Web.UI.WebControls", "asp")]
  65. [assembly: Dependency ("System,", LoadHint.Always)]
  66. [assembly: SecurityPermission (SecurityAction.RequestMinimum, Execution = true)]
  67. [assembly: SecurityPermission (SecurityAction.RequestMinimum, SkipVerification = true)]
  68. [assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
  69. [assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
  70. [assembly: RuntimeCompatibility (WrapNonExceptionThrows = true)]
  71. [assembly: WebResource ("MicrosoftAjax.js", "application/x-javascript")]
  72. [assembly: WebResource ("MicrosoftAjax.debug.js", "application/x-javascript")]
  73. [assembly: WebResource ("MicrosoftAjaxWebForms.js", "application/x-javascript")]
  74. [assembly: WebResource ("MicrosoftAjaxWebForms.debug.js", "application/x-javascript")]
  75. [assembly: WebResource ("MicrosoftAjaxTimer.js", "application/x-javascript")]
  76. [assembly: WebResource ("MicrosoftAjaxTimer.debug.js", "application/x-javascript")]
  77. #if TARGET_J2EE
  78. [assembly: WebResource ("MicrosoftAjaxExtension.js", "application/x-javascript")]
  79. [assembly: WebResource ("MicrosoftAjaxWebFormsExtension.js", "application/x-javascript")]
  80. #endif
  81. // Those entries must not be enabled until the appropriate .resx files with translations for the client scripts are
  82. // created.
  83. // The default (English) strings are embedded in the scripts - maybe we should extract them on the build time and create
  84. // the .resx files on the fly.
  85. //
  86. // DO NOT ENABLE UNTIL THE .resx FILES ARE PRESENT - ENABLING CAUSES BUG #384144
  87. #if DO_NOT_ENABLE_UNLESS_RESX_FILES_ARE_PRESENT
  88. [assembly: ScriptResource ("MicrosoftAjax.js", "System.Web.Resources.ScriptLibrary.Res", "Sys.Res")]
  89. [assembly: ScriptResource ("MicrosoftAjax.debug.js", "System.Web.Resources.ScriptLibrary.Res.debug", "Sys.Res")]
  90. [assembly: ScriptResource ("MicrosoftAjaxWebForms.js", "System.Web.Resources.ScriptLibrary.WebForms.Res", "Sys.WebForms.Res")]
  91. [assembly: ScriptResource ("MicrosoftAjaxWebForms.debug.js", "System.Web.Resources.ScriptLibrary.WebForms.Res.debug", "Sys.WebForms.Res")]
  92. #endif