Lucene.Net.Replicator.AspNetCore: Removed CLSCompliant attribute because dependencies are not marked CLS compliant.
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/869d1ddf Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/869d1ddf Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/869d1ddf Branch: refs/heads/master Commit: 869d1ddf060882d224c74b1430272fad19e9a86b Parents: 8081bbc Author: Shad Storhaug <[email protected]> Authored: Tue Oct 3 21:24:37 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Tue Oct 3 21:24:37 2017 +0700 ---------------------------------------------------------------------- .../Lucene.Net.Replicator.AspNetCore/Properties/AssemblyInfo.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/869d1ddf/src/dotnet/Lucene.Net.Replicator.AspNetCore/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/src/dotnet/Lucene.Net.Replicator.AspNetCore/Properties/AssemblyInfo.cs b/src/dotnet/Lucene.Net.Replicator.AspNetCore/Properties/AssemblyInfo.cs index a5e4b82..1158953 100644 --- a/src/dotnet/Lucene.Net.Replicator.AspNetCore/Properties/AssemblyInfo.cs +++ b/src/dotnet/Lucene.Net.Replicator.AspNetCore/Properties/AssemblyInfo.cs @@ -30,7 +30,9 @@ using System.Runtime.InteropServices; [assembly: AssemblyDefaultAlias("Lucene.Net.Replicator.AspNetCore")] [assembly: AssemblyCulture("")] -[assembly: CLSCompliant(true)] +// LUCENENET: Not marking CLS Compliant because Microsoft.AspNetCore.Http.Abstractions is not CLS compliant +// See: https://github.com/aspnet/HttpAbstractions/issues/938 +//[assembly: CLSCompliant(true)] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from
