This is an automated email from the ASF dual-hosted git repository. blachniet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/avro.git
commit 85016374897e776c54d7e8cfe022f60b1d4e9550 Author: Brian Lachniet <[email protected]> AuthorDate: Sun Aug 18 21:37:00 2019 -0400 AVRO-2454: Fix CA1724 - Type names should not match namespaces --- lang/csharp/Avro.ruleset | 1 - lang/csharp/src/apache/main/GlobalSuppressions.cs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/csharp/Avro.ruleset b/lang/csharp/Avro.ruleset index 4900e32..f40f63a 100644 --- a/lang/csharp/Avro.ruleset +++ b/lang/csharp/Avro.ruleset @@ -30,7 +30,6 @@ <Rule Id="CA1716" Action="Info" /> <Rule Id="CA1720" Action="Info" /> <Rule Id="CA1721" Action="Info" /> - <Rule Id="CA1724" Action="Info" /> <Rule Id="CA1801" Action="Info" /> <Rule Id="CA1819" Action="Info" /> <Rule Id="CA1820" Action="Info" /> diff --git a/lang/csharp/src/apache/main/GlobalSuppressions.cs b/lang/csharp/src/apache/main/GlobalSuppressions.cs index c73afa0..8bb0e31 100644 --- a/lang/csharp/src/apache/main/GlobalSuppressions.cs +++ b/lang/csharp/src/apache/main/GlobalSuppressions.cs @@ -40,3 +40,4 @@ [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1065:Do not raise exceptions in unexpected locations", Justification = "Maintain public API", Scope = "member", Target = "~P:Avro.Protocol.MD5")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Globalization", "CA1308:Normalize strings to uppercase", Justification = "Maintain public API", Scope = "member", Target = "~M:Avro.Schema.GetTypeString(Avro.Schema.Type)~System.String")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Globalization", "CA1308:Normalize strings to uppercase", Justification = "Maintain public API", Scope = "member", Target = "~P:Avro.UnnamedSchema.Name")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1724:Type names should not match namespaces", Justification = "Reviewed", Scope = "type", Target = "~T:Avro.Schema")]
