Skip to content

Commit 926b84e

Browse files
committed
Fix already taken -a option
now -av
1 parent 7272a77 commit 926b84e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

XmlSchemaClassGenerator.Console/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ A file name may be given by appending a pipe sign (|) followed by a file name (l
7676
{ "f|ef", "generate Entity Framework Code First compatible classes", v => entityFramework = v != null },
7777
{ "t|interface", "generate interfaces for groups and attribute groups (default is enabled)", v => interfaces = v != null },
7878
{ "a|pascal", "use Pascal case for class and property names (default is enabled)", v => pascal = v != null },
79-
{ "a|assemblyVisible", "use the internal visibility modifier (default is false)", v => assembly = v != null },
79+
{ "av|assemblyVisible", "use the internal visibility modifier (default is false)", v => assembly = v != null },
8080
{ "u|enableUpaCheck", "should XmlSchemaSet check for Unique Particle Attribution (UPA) (default is enabled)", v => enableUpaCheck = v != null },
8181
{ "ct|collectionType=", "collection type to use (default is " + typeof(Collection<>).FullName + ")", v => collectionType = v == null ? typeof(Collection<>) : Type.GetType(v, true) },
8282
{ "cit|collectionImplementationType=", "the default collection type implementation to use (default is null)", v => collectionImplementationType = v == null ? null : Type.GetType(v, true) },

0 commit comments

Comments
 (0)