AssemblyInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Reflection;
  3. using System.Resources;
  4. using System.Runtime.InteropServices;
  5. // General assembly information
  6. [assembly: AssemblyProduct("PlugIn1")]
  7. [assembly: AssemblyTitle("PlugIn1")]
  8. [assembly: AssemblyDescription("A plug-in for use with the Sandcastle Help File Builder")]
  9. [assembly: AssemblyCompany("Microsoft")]
  10. [assembly: AssemblyCopyright(AssemblyInfo.Copyright)]
  11. [assembly: AssemblyCulture("")]
  12. #if DEBUG
  13. [assembly: AssemblyConfiguration("Debug")]
  14. #else
  15. [assembly: AssemblyConfiguration("Release")]
  16. #endif
  17. [assembly: ComVisible(false)]
  18. [assembly: CLSCompliant(true)]
  19. // Resources contained within the assembly are English
  20. [assembly: NeutralResourcesLanguageAttribute("en")]
  21. [assembly: AssemblyVersion(AssemblyInfo.ProductVersion)]
  22. [assembly: AssemblyFileVersion(AssemblyInfo.ProductVersion)]
  23. [assembly: AssemblyInformationalVersion(AssemblyInfo.ProductVersion)]
  24. // This defines constants that can be used here and in the custom presentation style export attribute
  25. internal static partial class AssemblyInfo
  26. {
  27. // Product version
  28. public const string ProductVersion = "1.0.0.0";
  29. // Assembly copyright information
  30. public const string Copyright = "Copyright \xA9 2018, Microsoft, All Rights Reserved.";
  31. }