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.

48 lines
2.4 KiB

  1. #region Using directives
  2. using System;
  3. using System.Resources;
  4. using System.Reflection;
  5. using System.Runtime.CompilerServices;
  6. using System.Runtime.InteropServices;
  7. using System.Diagnostics.CodeAnalysis;
  8. #endregion
  9. // General Information about an assembly is controlled through the following
  10. // set of attributes. Change these attribute values to modify the information
  11. // associated with an assembly.
  12. [assembly: AssemblyTitle("ILSpy")]
  13. [assembly: AssemblyDescription(".NET assembly inspector and decompiler")]
  14. [assembly: AssemblyCompany("ic#code")]
  15. [assembly: AssemblyProduct("ILSpy")]
  16. [assembly: AssemblyCopyright("Copyright 2011-$INSERTYEAR$ AlphaSierraPapa for the SharpDevelop Team")]
  17. [assembly: AssemblyTrademark("")]
  18. [assembly: AssemblyCulture("")]
  19. // This sets the default COM visibility of types in the assembly to invisible.
  20. // If you need to expose a type to COM, use [ComVisible(true)] on that type.
  21. [assembly: ComVisible(false)]
  22. [assembly: AssemblyVersion(RevisionClass.Major + "." + RevisionClass.Minor + "." + RevisionClass.Build + "." + RevisionClass.Revision)]
  23. [assembly: AssemblyInformationalVersion(RevisionClass.FullVersion + "-$INSERTSHORTCOMMITHASH$")]
  24. [assembly: NeutralResourcesLanguage("en-US")]
  25. [assembly: InternalsVisibleTo("ILSpy.AddIn, PublicKey=0024000004800000940000000602000000240000525341310004000001000100653c4a319be4f524972c3c5bba5fd243330f8e900287d9022d7821a63fd0086fd3801e3683dbe9897f2ecc44727023e9b40adcf180730af70c81c54476b3e5ba8b0f07f5132b2c3cc54347a2c1a9d64ebaaaf3cbffc1a18c427981e2a51d53d5ab02536b7550e732f795121c38a0abfdb38596353525d034baf9e6f1fd8ac4ac")]
  26. [assembly: SuppressMessage("Microsoft.Usage", "CA2243:AttributeStringLiteralsShouldParseCorrectly",
  27. Justification = "AssemblyInformationalVersion does not need to be a parsable version")]
  28. [assembly: SuppressMessage("Redundancies in Symbol Declarations", "RECS0122:Initializing field with default value is redundant",
  29. Justification = "Explicit default initialization is necessary to avoid compiler warning with MEF")]
  30. internal static class RevisionClass
  31. {
  32. public const string Major = "3";
  33. public const string Minor = "2";
  34. public const string Build = "0";
  35. public const string Revision = "$INSERTREVISION$";
  36. public const string VersionName = "beta";
  37. public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$";
  38. }