Skip to content

Commit

Permalink
improve help
Browse files Browse the repository at this point in the history
  • Loading branch information
nenoNaninu committed Dec 1, 2024
1 parent 3ec42ee commit b751ee8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Tapper.Generator/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ public async Task Transpile(
string project,
[Option('o', Description = "Output directory")]
string output,
[Option("eol", Description ="lf / crlf / cr")]
[Option("eol", Description= "End of line")]
NewLineOption newLine = NewLineOption.Lf,
[Option('i', Description ="Indent size")]
int indent = 4,
[Option("asm", Description ="The flag whether to extend the transpile target to the referenced assembly.")]
bool assemblies = false,
[Option('s', Description ="JSON / MessagePack : The output type will be suitable for the selected serializer.")]
[Option('s', Description ="The output type will be suitable for the selected serializer.")]
SerializerOption serializer = SerializerOption.Json,
[Option('n', Description ="camelCase / PascalCase / none (The name in C# is used as it is.)")]
[Option('n', Description ="Naming style. If none is selected, the C# name is used as it is.")]
NamingStyle namingStyle = NamingStyle.CamelCase,
[Option(Description ="value / name / nameCamel / NamePascal / union / unionCamel / UnionPascal")]
[Option(Description ="Enum representation style")]
EnumStyle @enum = EnumStyle.Value,
[Option("attr", Description ="The flag whether attributes such as JsonPropertyName should affect transpilation.")]
bool attribute = true)
Expand Down

0 comments on commit b751ee8

Please sign in to comment.