|
| 1 | +using System; |
| 2 | +using System.Reflection; |
| 3 | +using System.Runtime.InteropServices; |
| 4 | + |
| 5 | +// Allgemeine Informationen über eine Assembly werden über die folgenden |
| 6 | +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, |
| 7 | +// die mit einer Assembly verknüpft sind. |
| 8 | +[assembly: AssemblyTitle("Git.hub")] |
| 9 | +[assembly: AssemblyDescription("This is a GitExtensions fork of GitHub API for C#")] |
| 10 | +[assembly: AssemblyConfiguration("")] |
| 11 | +[assembly: AssemblyCompany("")] |
| 12 | +[assembly : AssemblyCopyright("Copyright (c) 2012 Marcus Bauer <[email protected]>")] |
| 13 | + |
| 14 | +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird |
| 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("3.1.0")] |
| 29 | +[assembly: AssemblyFileVersion("3.1.0")] |
| 30 | +[assembly: AssemblyInformationalVersion("3.1.0")] |
| 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