Skip to content

Commit

Permalink
Fix usage information
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Ganss committed Mar 15, 2021
1 parent d23cdf4 commit 55c863c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XmlSchemaClassGenerator.Console/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ A file name may be given by appending a pipe sign (|) followed by a file name (l
{ "cl|commentLanguages=", $"comment languages to use (default is {string.Join(", ", commentLanguages)}; supported are {string.Join(", ", supportedCommentLanguages)})",
v => commentLanguages = v.Split(',').Select(l => l.Trim()).ToArray() },
{ "un|uniqueTypeNames", "generate type names that are unique across namespaces (default is false)", v => uniqueTypeNamesAcrossNamespaces = v != null },
{ "gc|generatedCodeAttribute", "Adds version information to GeneratedCodeAttribute (default is true)", v => createGeneratedCodeAttributeVersion = v != null },
{ "gc|generatedCodeAttribute", "add version information to GeneratedCodeAttribute (default is true)", v => createGeneratedCodeAttributeVersion = v != null },
};

var globsAndUris = options.Parse(args);
Expand Down

0 comments on commit 55c863c

Please sign in to comment.