mirror of https://github.com/icsharpcode/ILSpy.git
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
48 lines
2.4 KiB
#region Using directives |
|
|
|
using System; |
|
using System.Resources; |
|
using System.Reflection; |
|
using System.Runtime.CompilerServices; |
|
using System.Runtime.InteropServices; |
|
using System.Diagnostics.CodeAnalysis; |
|
|
|
#endregion |
|
|
|
// General Information about an assembly is controlled through the following |
|
// set of attributes. Change these attribute values to modify the information |
|
// associated with an assembly. |
|
[assembly: AssemblyTitle("ILSpy")] |
|
[assembly: AssemblyDescription(".NET assembly inspector and decompiler")] |
|
[assembly: AssemblyCompany("ic#code")] |
|
[assembly: AssemblyProduct("ILSpy")] |
|
[assembly: AssemblyCopyright("Copyright 2011-$INSERTYEAR$ AlphaSierraPapa for the SharpDevelop Team")] |
|
[assembly: AssemblyTrademark("")] |
|
[assembly: AssemblyCulture("")] |
|
|
|
// This sets the default COM visibility of types in the assembly to invisible. |
|
// If you need to expose a type to COM, use [ComVisible(true)] on that type. |
|
[assembly: ComVisible(false)] |
|
|
|
[assembly: AssemblyVersion(RevisionClass.Major + "." + RevisionClass.Minor + "." + RevisionClass.Build + "." + RevisionClass.Revision)] |
|
[assembly: AssemblyInformationalVersion(RevisionClass.FullVersion + "-$INSERTSHORTCOMMITHASH$")] |
|
[assembly: NeutralResourcesLanguage("en-US")] |
|
|
|
[assembly: InternalsVisibleTo("ILSpy.AddIn, PublicKey=0024000004800000940000000602000000240000525341310004000001000100653c4a319be4f524972c3c5bba5fd243330f8e900287d9022d7821a63fd0086fd3801e3683dbe9897f2ecc44727023e9b40adcf180730af70c81c54476b3e5ba8b0f07f5132b2c3cc54347a2c1a9d64ebaaaf3cbffc1a18c427981e2a51d53d5ab02536b7550e732f795121c38a0abfdb38596353525d034baf9e6f1fd8ac4ac")] |
|
|
|
[assembly: SuppressMessage("Microsoft.Usage", "CA2243:AttributeStringLiteralsShouldParseCorrectly", |
|
Justification = "AssemblyInformationalVersion does not need to be a parsable version")] |
|
|
|
[assembly: SuppressMessage("Redundancies in Symbol Declarations", "RECS0122:Initializing field with default value is redundant", |
|
Justification = "Explicit default initialization is necessary to avoid compiler warning with MEF")] |
|
|
|
internal static class RevisionClass |
|
{ |
|
public const string Major = "4"; |
|
public const string Minor = "0"; |
|
public const string Build = "0"; |
|
public const string Revision = "$INSERTREVISION$"; |
|
public const string VersionName = "beta1"; |
|
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$"; |
|
}
|
|
|