Skip to content

Commit

Permalink
fix option description
Browse files Browse the repository at this point in the history
  • Loading branch information
nenoNaninu committed Jan 8, 2023
1 parent 4692376 commit 1b129ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Tapper.Generator/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ public async Task Transpile(
int indent = 4,
[Option("asm", "Flag whether to extend the transpile target to the referenced assembly.")]
bool assemblies = false,
[Option("s", "Json / MessagePack : The output type will be suitable for the selected serializer.")]
[Option("s", "JSON / MessagePack : The output type will be suitable for the selected serializer.")]
SerializerOption serializer = SerializerOption.Json,
[Option("n", "PascalCase / camelCase / none (The name in C# is used as it is.)")]
[Option("n", "camelCase (default) / PascalCase / none (The name in C# is used as it is.)")]
NamingStyle namingStyle = NamingStyle.CamelCase,
[Option("en", "Value (default) / NameString / NameStringCamel / NameStringPascal / Union / UnionCamel / UnionPascal")]
[Option("en", "value (default) / name / nameCamel / NamePascal / union / unionCamel / UnionPascal")]
EnumStyle @enum = EnumStyle.Value)
{
_logger.Log(LogLevel.Information, "Start loading the csproj of {path}.", Path.GetFullPath(project));
Expand Down

0 comments on commit 1b129ea

Please sign in to comment.