Skip to content

Commit 7df924a

Browse files
committed
Fix assembly info
1 parent 43250af commit 7df924a

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

Git.hub/Git.hub.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@
4646
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="15.8.132" />
4747
</ItemGroup>
4848
<ItemGroup>
49-
<Compile Include="..\..\..\CommonAssemblyInfoExternals.cs">
50-
<Link>Properties\CommonAssemblyInfoExternals.cs</Link>
51-
</Compile>
5249
<Compile Include="APIv2\RepositoryV2.cs" />
5350
<Compile Include="Branch.cs" />
5451
<Compile Include="Client.cs" />

Git.hub/Properties/AssemblyInfo.cs

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System.Reflection;
1+
using System;
2+
using System.Reflection;
23
using System.Runtime.InteropServices;
34

45
// Allgemeine Informationen über eine Assembly werden über die folgenden
@@ -12,3 +13,26 @@
1213

1314
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
1415
[assembly: Guid("008c5a5b-d628-418a-b392-46c56bacde4b")]
16+
17+
[assembly: AssemblyProduct("GitExtensions")]
18+
[assembly: AssemblyTrademark("")]
19+
[assembly: AssemblyCulture("")]
20+
21+
// Version information for an assembly consists of the following four values:
22+
//
23+
// Major Version
24+
// Minor Version
25+
// Build Number
26+
// Revision
27+
//
28+
[assembly: AssemblyVersion("2.99.90")]
29+
[assembly: AssemblyFileVersion("2.99.90")]
30+
[assembly: AssemblyInformationalVersion("3.00.rc2")]
31+
32+
// Disable CLS compliance. See https://github.com/gitextensions/gitextensions/issues/4710
33+
[assembly: CLSCompliant(isCompliant: false)]
34+
35+
// Setting ComVisible to false makes the types in this assembly not visible
36+
// to COM components. If you need to access a type in this assembly from
37+
// COM, set the ComVisible attribute to true on that type.
38+
[assembly: ComVisible(false)]

0 commit comments

Comments
 (0)