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.
22 lines
895 B
22 lines
895 B
#region Using directives |
|
|
|
using System; |
|
using System.Diagnostics.CodeAnalysis; |
|
using System.Reflection; |
|
using System.Resources; |
|
using System.Runtime.CompilerServices; |
|
using System.Runtime.InteropServices; |
|
using System.Runtime.Versioning; |
|
|
|
#endregion |
|
|
|
// 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(DecompilerVersionInfo.Major + "." + DecompilerVersionInfo.Minor + "." + DecompilerVersionInfo.Build + "." + DecompilerVersionInfo.Revision)] |
|
[assembly: AssemblyInformationalVersion(DecompilerVersionInfo.FullVersionWithShortCommitHash)] |
|
|
|
[assembly: SuppressMessage("Microsoft.Usage", "CA2243:AttributeStringLiteralsShouldParseCorrectly", |
|
Justification = "AssemblyInformationalVersion does not need to be a parsable version")] |
|
|
|
|