From 1b129ea213651f5f300e2e7b7977ed378f2e4c83 Mon Sep 17 00:00:00 2001 From: nenoNaninu Date: Mon, 9 Jan 2023 03:44:58 +0900 Subject: [PATCH] fix option description --- src/Tapper.Generator/App.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tapper.Generator/App.cs b/src/Tapper.Generator/App.cs index b168df0..a77dfe5 100644 --- a/src/Tapper.Generator/App.cs +++ b/src/Tapper.Generator/App.cs @@ -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));