diff --git a/ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj b/ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
index a67b9bcc8..23cc1939d 100644
--- a/ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
+++ b/ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
@@ -8,11 +8,13 @@
true
true
true
+
+ en-US
+ False
+ False
+ False
ilspycmd
ilspycmd
- 8.0.0.0-alpha1
- 8.0.0.0
- 8.0.0.0
Command-line decompiler using the ILSpy decompilation engine
Copyright 2011-2022 AlphaSierraPapa
https://github.com/icsharpcode/ILSpy/
@@ -49,4 +51,10 @@
+
+
+
+
+
+
diff --git a/ICSharpCode.Decompiler.Console/Properties/AssemblyInfo.cs b/ICSharpCode.Decompiler.Console/Properties/AssemblyInfo.cs
new file mode 100644
index 000000000..f89527a81
--- /dev/null
+++ b/ICSharpCode.Decompiler.Console/Properties/AssemblyInfo.cs
@@ -0,0 +1,22 @@
+#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")]
+