File tree Expand file tree Collapse file tree 2 files changed +25
-4
lines changed Expand file tree Collapse file tree 2 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 46
46
<PackageReference Include =" Microsoft.VisualStudio.Threading" Version =" 15.8.132" />
47
47
</ItemGroup >
48
48
<ItemGroup >
49
- <Compile Include =" ..\..\..\CommonAssemblyInfoExternals.cs" >
50
- <Link >Properties\CommonAssemblyInfoExternals.cs</Link >
51
- </Compile >
52
49
<Compile Include =" APIv2\RepositoryV2.cs" />
53
50
<Compile Include =" Branch.cs" />
54
51
<Compile Include =" Client.cs" />
Original file line number Diff line number Diff line change 1
- using System . Reflection ;
1
+ using System ;
2
+ using System . Reflection ;
2
3
using System . Runtime . InteropServices ;
3
4
4
5
// Allgemeine Informationen über eine Assembly werden über die folgenden
12
13
13
14
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
14
15
[ 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 ) ]
You can’t perform that action at this time.
0 commit comments