From b79050874c558961d4d952e2f4690fe100d0976a Mon Sep 17 00:00:00 2001 From: Michael Ganss Date: Tue, 21 Jun 2022 17:56:10 +0200 Subject: [PATCH] Fix usage --- XmlSchemaClassGenerator.Console/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XmlSchemaClassGenerator.Console/Program.cs b/XmlSchemaClassGenerator.Console/Program.cs index 4e8e1f71..d6e7459d 100644 --- a/XmlSchemaClassGenerator.Console/Program.cs +++ b/XmlSchemaClassGenerator.Console/Program.cs @@ -67,8 +67,8 @@ static void Main(string[] args) A file name may be given by appending a pipe sign (|) followed by a file name (like schema.xsd) to the XML namespace. If no mapping is found for an XML namespace, a name is generated automatically (may fail).", v => namespaces.Add(v) }, { "nf|namespaceFile=", @"file containing mapppings from XML namespaces to C# namespaces -The format is one mapping per line, whitespace separated, XML namespace, C# namespace, and optionally file name. -Lines starting with # are ignored.", v => namespaceFiles.Add(v) }, +The line format is one mapping per line: XML namespace = C# namespace [optional file name]. +Lines starting with # and empty lines are ignored.", v => namespaceFiles.Add(v) }, { "o|output=", "the {FOLDER} to write the resulting .cs files to", v => outputFolder = v }, { "i|integer=", @"map xs:integer and derived types to {TYPE} instead of automatic approximation {TYPE} can be i[nt], l[ong], or d[ecimal]", v => {