Skip to content

Commit

Permalink
Merge pull request #267 from lahma/features/cls-compliancy
Browse files Browse the repository at this point in the history
Make shipped assemblies have CLSCompliant(true) applied
  • Loading branch information
adamsitnik authored Sep 28, 2016
2 parents 24e944a + 69330a3 commit fb84024
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
5 changes: 4 additions & 1 deletion src/BenchmarkDotNet.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using BenchmarkDotNet.Properties;
Expand All @@ -18,6 +19,8 @@
[assembly: ComVisible(false)]
[assembly: Guid("95f5d645-19e3-432f-95d4-c5ea374dd15b")]

[assembly: CLSCompliant(true)]

#if RELEASE
[assembly: InternalsVisibleTo("BenchmarkDotNet.Toolchains.Roslyn,PublicKey=" + BenchmarkDotNetInfo.PublicKey)]
[assembly: InternalsVisibleTo("BenchmarkDotNet,PublicKey=" + BenchmarkDotNetInfo.PublicKey)]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;
using BenchmarkDotNet.Properties;

Expand All @@ -15,4 +16,6 @@
[assembly: AssemblyCulture("")]

[assembly: ComVisible(false)]
[assembly: Guid("7bbae514-895c-4ca5-95ba-b2a1a0c2e0af")]
[assembly: Guid("7bbae514-895c-4ca5-95ba-b2a1a0c2e0af")]

[assembly: CLSCompliant(true)]
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using BenchmarkDotNet.Properties;
Expand All @@ -18,6 +19,8 @@
[assembly: ComVisible(false)]
[assembly: Guid("f5785871-7e2c-4894-85de-a28eacb1d9b5")]

[assembly: CLSCompliant(true)]

#if RELEASE
[assembly: InternalsVisibleTo("BenchmarkDotNet,PublicKey=" + BenchmarkDotNetInfo.PublicKey)]
#else
Expand Down
5 changes: 4 additions & 1 deletion src/BenchmarkDotNet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using BenchmarkDotNet.Properties;
Expand All @@ -18,6 +19,8 @@
[assembly: ComVisible(false)]
[assembly: Guid("cbba82d3-e650-407f-a0f0-767891d4f04c")]

[assembly: CLSCompliant(true)]

#if RELEASE
[assembly: InternalsVisibleTo("BenchmarkDotNet.Tests,PublicKey=" + BenchmarkDotNetInfo.PublicKey)]
[assembly: InternalsVisibleTo("BenchmarkDotNet.IntegrationTests,PublicKey=" + BenchmarkDotNetInfo.PublicKey)]
Expand Down

0 comments on commit fb84024

Please sign in to comment.