Skip to content

Commit

Permalink
Better description for nullableReferenceAttributes
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas.hoffmann committed Mar 16, 2022
1 parent 032f1e4 commit 08deb9c
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 @@ -128,7 +128,7 @@ A file name may be given by appending a pipe sign (|) followed by a file name (l
{ "un|uniqueTypeNames", "generate type names that are unique across namespaces (default is false)", v => uniqueTypeNamesAcrossNamespaces = v != null },
{ "gc|generatedCodeAttribute", "add version information to GeneratedCodeAttribute (default is true)", v => createGeneratedCodeAttributeVersion = v != null },
{ "nc|netCore", "generate .NET Core specific code that might not work with .NET Framework (default is false)", v => netCoreSpecificCode = v != null },
{ "nr|nullableReferenceAttributes", "generate attributes for nullable references (default is false)", v => nullableReferenceAttributes = v != null },
{ "nr|nullableReferenceAttributes", "generate attributes for nullable reference types (default is false)", v => nullableReferenceAttributes = v != null },
{ "ca|commandArgs", "generate a comment with the exact command line arguments that were used to generate the source code (default is true)", v => generateCommandLineArgs = v != null },
};

Expand Down

0 comments on commit 08deb9c

Please sign in to comment.