AssemblyInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. using System;
  5. using System.Security.Permissions;
  6. // General Information about an assembly is controlled through the following
  7. // set of attributes. Change these attribute values to modify the information
  8. // associated with an assembly.
  9. [assembly: AssemblyTitle("Examples")]
  10. [assembly: AssemblyDescription("")]
  11. [assembly: AssemblyConfiguration("")]
  12. [assembly: AssemblyCompany("")]
  13. [assembly: AssemblyProduct("")]
  14. [assembly: AssemblyCopyright("Copyright © 2010")]
  15. [assembly: AssemblyTrademark("")]
  16. [assembly: AssemblyCulture("")]
  17. // Setting ComVisible to false makes the types in this assembly not visible
  18. // to COM components. If you need to access a type in this assembly from
  19. // COM, set the ComVisible attribute to true on that type.
  20. [assembly: ComVisible(true)]
  21. // The following GUID is for the ID of the typelib if this project is exposed to COM
  22. [assembly: Guid("3B031AC0-A090-49cc-8098-321D0F82FA6C")]
  23. // Version information for an assembly consists of the following four values:
  24. //
  25. // Major Version
  26. // Minor Version
  27. // Build Number
  28. // Revision
  29. //
  30. [assembly: SecurityPermission(SecurityAction.RequestMinimum, UnmanagedCode = true)]