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.

24 lines
1.3 KiB

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