From 01ba178776ed9168f94c7ec5d4b743e6c4d8904f Mon Sep 17 00:00:00 2001 From: Michael Ganss Date: Thu, 27 May 2021 14:05:39 +0200 Subject: [PATCH] Fix usage --- XmlSchemaClassGenerator.Console/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XmlSchemaClassGenerator.Console/Program.cs b/XmlSchemaClassGenerator.Console/Program.cs index 86a5ea09..416f2ace 100644 --- a/XmlSchemaClassGenerator.Console/Program.cs +++ b/XmlSchemaClassGenerator.Console/Program.cs @@ -222,7 +222,7 @@ A file name may be given by appending a pipe sign (|) followed by a file name (l static void ShowHelp(OptionSet p) { - System.Console.WriteLine("Usage: dotnet xscgen [OPTIONS]+ xsdFile..."); + System.Console.WriteLine("Usage: xscgen [OPTIONS]+ xsdFile..."); System.Console.WriteLine("Generate C# classes from XML Schema files."); System.Console.WriteLine("Version " + typeof(Generator).Assembly.GetCustomAttribute().Version); System.Console.WriteLine(@"xsdFiles may contain globs, e.g. ""content\{schema,xsd}\**\*.xsd"", and URLs.");