PageRenderTime 50ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/IronPython_Main/Runtime/Microsoft.Scripting.Core/Properties/AssemblyInfo.cs

#
C# | 62 lines | 24 code | 8 blank | 30 comment | 0 complexity | 6c78ec0f80ccb0779d3283b73c28fe32 MD5 | raw file
Possible License(s): GPL-2.0, MPL-2.0-no-copyleft-exception, CPL-1.0, CC-BY-SA-3.0, BSD-3-Clause, ISC, AGPL-3.0, LGPL-2.1, Apache-2.0
  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Apache License, Version 2.0. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Apache License, Version 2.0, please send an email to
  8. * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Apache License, Version 2.0.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. *
  14. * ***************************************************************************/
  15. using System;
  16. using System.Reflection;
  17. using System.Runtime.CompilerServices;
  18. using System.Runtime.InteropServices;
  19. using System.Security;
  20. // General Information about an assembly is controlled through the following
  21. // set of attributes. Change these attribute values to modify the information
  22. // associated with an assembly.
  23. [assembly: AssemblyTitle("Microsoft.Scripting")]
  24. [assembly: AssemblyDescription("")]
  25. [assembly: AssemblyConfiguration("")]
  26. [assembly: AssemblyCompany("Microsoft")]
  27. [assembly: AssemblyProduct("Microsoft.Scripting")]
  28. [assembly: AssemblyCopyright("Š Microsoft Corporation. All rights reserved.")]
  29. [assembly: AssemblyTrademark("")]
  30. [assembly: AssemblyCulture("")]
  31. // Setting ComVisible to false makes the types in this assembly not visible
  32. // to COM components. If you need to access a type in this assembly from
  33. // COM, set the ComVisible attribute to true on that type.
  34. [assembly: ComVisible(false)]
  35. [assembly: CLSCompliant(true)]
  36. // The following GUID is for the ID of the typelib if this project is exposed to COM
  37. [assembly: Guid("cabb8088-1370-43ca-ad47-1c32d3f7bd10")]
  38. // Version information for an assembly consists of the following four values:
  39. //
  40. // Major Version
  41. // Minor Version
  42. // Build Number
  43. // Revision
  44. //
  45. // You can specify all the values or you can default the Revision and Build Numbers
  46. // by using the '*' as shown below:
  47. [assembly: SecurityTransparent]
  48. [assembly: System.Resources.NeutralResourcesLanguage("en-US")]
  49. #if !SILVERLIGHT
  50. [assembly: AssemblyVersion("1.1.0.10")]
  51. [assembly: AssemblyFileVersion("2.7.1010.0")]
  52. [assembly: AssemblyInformationalVersion("2.7")]
  53. [assembly: AllowPartiallyTrustedCallers]
  54. #endif