From 15898e6c2efc8e1663135e0bd7e48822c6948511 Mon Sep 17 00:00:00 2001 From: David Neukam Date: Wed, 15 Oct 2025 10:31:51 +0200 Subject: [PATCH] AVRO-4178: [C#] add documentation on --namespace flag of C# AvroGen --- lang/csharp/src/apache/codegen/AvroGen.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/csharp/src/apache/codegen/AvroGen.cs b/lang/csharp/src/apache/codegen/AvroGen.cs index 3b07ca59fdc..d845f6ba90a 100644 --- a/lang/csharp/src/apache/codegen/AvroGen.cs +++ b/lang/csharp/src/apache/codegen/AvroGen.cs @@ -155,6 +155,7 @@ static void Usage() " --namespace Map an Avro schema/protocol namespace to a C# namespace.\n" + " The format is \"my.avro.namespace:my.csharp.namespace\".\n" + " May be specified multiple times to map multiple namespaces.\n" + + " Be aware that the mapping changes the SCHEMA, affecting the avro contract.\n" + " --skip-directories Skip creation of namespace directories. It will generate classes right inside output directory\n", AppDomain.CurrentDomain.FriendlyName); }