From 9383d35dd3db9e47ade1d165082daeec45c19359 Mon Sep 17 00:00:00 2001 From: RussKie Date: Tue, 4 Dec 2018 23:13:30 +1100 Subject: [PATCH] Fix assembly info --- Project/ICSharpCode.TextEditor.csproj | 3 --- Project/Properties/AssemblyInfo.cs | 25 +++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/Project/ICSharpCode.TextEditor.csproj b/Project/ICSharpCode.TextEditor.csproj index 6ca6170..04bf3a4 100644 --- a/Project/ICSharpCode.TextEditor.csproj +++ b/Project/ICSharpCode.TextEditor.csproj @@ -71,9 +71,6 @@ - - Properties\CommonAssemblyInfoExternals.cs - diff --git a/Project/Properties/AssemblyInfo.cs b/Project/Properties/AssemblyInfo.cs index cd11f89..753876c 100644 --- a/Project/Properties/AssemblyInfo.cs +++ b/Project/Properties/AssemblyInfo.cs @@ -5,9 +5,11 @@ // $Revision$ // +using System; using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; [assembly: AssemblyCompany("ic#code")] [assembly: AssemblyCopyright("2000-2010 AlphaSierraPapa")] @@ -18,3 +20,26 @@ using System.Runtime.CompilerServices; [assembly: AssemblyTitle("ICSharpCode.TextEditor v4.0.2.6466")] [assembly: AssemblyDescription("This is a GitExtensions fork of SharpDevelop .NET text editor control")] [assembly: AssemblyConfiguration("")] + +[assembly: AssemblyProduct("GitExtensions")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +[assembly: AssemblyVersion("2.99.90")] +[assembly: AssemblyFileVersion("2.99.90")] +[assembly: AssemblyInformationalVersion("3.00.rc2")] + +// Disable CLS compliance. See https://github.com/gitextensions/gitextensions/issues/4710 +[assembly: CLSCompliant(isCompliant: false)] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)]