AssemblyInfo.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. using System.Security.Permissions;
  5. [assembly: FileIOPermission(SecurityAction.RequestMinimum, Unrestricted = true)]
  6. [assembly: ReflectionPermission(SecurityAction.RequestMinimum, Unrestricted = true)]
  7. [assembly: SecurityPermission(SecurityAction.RequestMinimum, UnmanagedCode = true, ControlEvidence = true)]
  8. [assembly: UIPermission(SecurityAction.RequestMinimum, Unrestricted = true)]
  9. [assembly: KeyContainerPermission(SecurityAction.RequestMinimum, Unrestricted = true)]
  10. // General Information about an assembly is controlled through the following
  11. // set of attributes. Change these attribute values to modify the information
  12. // associated with an assembly.
  13. [assembly: AssemblyTitle("BurnMedia")]
  14. [assembly: AssemblyDescription("")]
  15. [assembly: AssemblyConfiguration("")]
  16. [assembly: AssemblyCompany("")]
  17. [assembly: AssemblyProduct("BurnMedia")]
  18. [assembly: AssemblyCopyright("Copyright © 2008")]
  19. [assembly: AssemblyTrademark("")]
  20. [assembly: AssemblyCulture("")]
  21. // Setting ComVisible to false makes the types in this assembly not visible
  22. // to COM components. If you need to access a type in this assembly from
  23. // COM, set the ComVisible attribute to true on that type.
  24. [assembly: ComVisible(true)]
  25. // The following GUID is for the ID of the typelib if this project is exposed to COM
  26. [assembly: Guid("48bba33e-39da-4804-ad68-a023e1b1f80b")]
  27. // Version information for an assembly consists of the following four values:
  28. //
  29. // Major Version
  30. // Minor Version
  31. // Build Number
  32. // Revision
  33. //
  34. // You can specify all the values or you can default the Build and Revision Numbers
  35. // by using the '*' as shown below:
  36. // [assembly: AssemblyVersion("1.0.*")]
  37. [assembly: AssemblyVersion("1.0.0.0")]
  38. [assembly: AssemblyFileVersion("1.0.0.0")]