Skip to content

Commit 8098def

Browse files
committed
Restore accidentally removed AssemblyInfo.cs
1 parent cd72105 commit 8098def

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

Git.hub/Git.hub.csproj

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<OutputType>Library</OutputType>
54
<TargetFramework>netstandard2.0</TargetFramework>
5+
<NoWarn>$(NoWarn),1573,1591,1696,1712</NoWarn>
6+
7+
<!-- TODO once all project migrated to SDK-style, remove this and move properties to Directory.Build.props -->
8+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
69
</PropertyGroup>
710

811
<ItemGroup>

Git.hub/Properties/AssemblyInfo.cs

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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

Comments
 (0)