AssemblyInfo.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Reflection;
  3. using System.Runtime.CompilerServices;
  4. using System.Runtime.InteropServices;
  5. [assembly: CLSCompliant(true)]
  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("SharpFont")]
  10. [assembly: AssemblyDescription("Cross-platform FreeType bindings for C#")]
  11. [assembly: AssemblyConfiguration("")]
  12. [assembly: AssemblyCompany("")]
  13. [assembly: AssemblyProduct("SharpFont")]
  14. [assembly: AssemblyCopyright("Copyright (c) Robert Rouhani 2012")]
  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(false)]
  21. // The following GUID is for the ID of the typelib if this project is exposed to COM
  22. [assembly: Guid("baf287e3-cfcc-4183-ba83-f23a7ecb8373")]
  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. // You can specify all the values or you can default the Build and Revision Numbers
  31. // by using the '*' as shown below:
  32. // [assembly: AssemblyVersion("1.0.*")]
  33. [assembly: AssemblyVersion("1.0.0.0")]
  34. [assembly: AssemblyFileVersion("1.0.0.0")]