Skip to content

Commit 3fd284e

Browse files
committed
Fix assembly properties
1 parent 74be778 commit 3fd284e

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

src/Cake.Issues.CodeClimate/Properties/AssemblyInfo.cs renamed to src/Cake.Issues.CodeClimate/Properties/ProjectInfo.cs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1+
using System;
12
using System.Reflection;
3+
using System.Runtime.CompilerServices;
24
using System.Runtime.InteropServices;
35

46
// General Information about an assembly is controlled through the following
57
// set of attributes. Change these attribute values to modify the information
68
// associated with an assembly.
7-
[assembly: AssemblyTitle("Cake.Issues.CodeClimate")]
8-
[assembly: AssemblyDescription("Support for CodeClimate compatible files for the Cake.Issues Addin for Cake Build Automation System")]
9-
[assembly: AssemblyConfiguration("")]
10-
[assembly: AssemblyCompany("")]
11-
[assembly: AssemblyProduct("Cake.Issues")]
12-
[assembly: AssemblyCopyright("Copyright © Cake Issues contributors")]
139
[assembly: AssemblyTrademark("")]
1410
[assembly: AssemblyCulture("")]
1511

@@ -19,4 +15,7 @@
1915
[assembly: ComVisible(false)]
2016

2117
// The following GUID is for the ID of the typelib if this project is exposed to COM
22-
[assembly: Guid("b3f1a4be-7c7b-4a9e-8b7f-4e4e5c5b4d4e")]
18+
[assembly: Guid("b3f1a4be-7c7b-4a9e-8b7f-4e4e5c5b4d4e")]
19+
20+
[assembly: CLSCompliant(true)]
21+
[assembly: InternalsVisibleTo("Cake.Issues.CodeClimate.Tests")]

0 commit comments

Comments
 (0)