AssemblyInfo.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. using System.Security;
  5. using System;
  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("FastReport")]
  10. [assembly: AssemblyDescription("Report generator")]
  11. [assembly: AssemblyConfiguration("")]
  12. [assembly: AssemblyCompany("Fast Reports Inc.")]
  13. [assembly: AssemblyProduct("FastReport.Net")]
  14. [assembly: AssemblyCopyright("Copyright © Fast Reports Inc. 2007-2022")]
  15. [assembly: AssemblyTrademark("")]
  16. [assembly: AssemblyCulture("")]
  17. [assembly: AllowPartiallyTrustedCallers]
  18. [assembly: CLSCompliant(true)]
  19. [assembly: SecurityRules(SecurityRuleSet.Level1)]
  20. // Setting ComVisible to false makes the types in this assembly not visible
  21. // to COM components. If you need to access a type in this assembly from
  22. // COM, set the ComVisible attribute to true on that type.
  23. [assembly: ComVisible(true)]
  24. // The following GUID is for the ID of the typelib if this project is exposed to COM
  25. [assembly: Guid("fa318ed9-e7f9-40e4-af4e-92f048ded576")]
  26. // Version information for an assembly consists of the following four values:
  27. //
  28. // Major Version
  29. // Minor Version
  30. // Build Number
  31. // Revision
  32. //
  33. // You can specify all the values or you can default the Revision and Build Numbers
  34. // by using the '*' as shown below:
  35. [assembly: AssemblyVersion("2022.3.12.0")]