You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
780 B

  1. #region Using directives
  2. using System.Diagnostics.CodeAnalysis;
  3. using System.Reflection;
  4. using System.Runtime.InteropServices;
  5. #endregion
  6. // This sets the default COM visibility of types in the assembly to invisible.
  7. // If you need to expose a type to COM, use [ComVisible(true)] on that type.
  8. [assembly: ComVisible(false)]
  9. [assembly: AssemblyVersion(DecompilerVersionInfo.Major + "." + DecompilerVersionInfo.Minor + "." + DecompilerVersionInfo.Build + "." + DecompilerVersionInfo.Revision)]
  10. [assembly: AssemblyInformationalVersion(DecompilerVersionInfo.FullVersionWithCommitHash)]
  11. [assembly: SuppressMessage("Microsoft.Usage", "CA2243:AttributeStringLiteralsShouldParseCorrectly",
  12. Justification = "AssemblyInformationalVersion does not need to be a parsable version")]