File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -178,17 +178,17 @@ public static Task RunAsync(string[] args)
178178
179179 static void ThrowArgumentParseFailed(string argumentName, string value)
180180 {
181- throw new ArgumentException($"Argument '{argumentName}' parse failed. value: {value}");
181+ throw new ArgumentException($"Argument '{argumentName}' failed to parse, provided value: {value}");
182182 }
183183
184184 static void ThrowRequiredArgumentNotParsed(string name)
185185 {
186- throw new ArgumentException($"Require argument '{name}' does not parsed .");
186+ throw new ArgumentException($"Required argument '{name}' was not specified .");
187187 }
188188
189189 static void ThrowArgumentNameNotFound(string argumentName)
190190 {
191- throw new ArgumentException($"Argument '{argumentName}' does not found in command prameters .");
191+ throw new ArgumentException($"Argument '{argumentName}' is not recognized .");
192192 }
193193
194194 [MethodImpl(MethodImplOptions.AggressiveInlining)]
@@ -728,4 +728,4 @@ static void EmitConsoleAppBuilder(SourceProductionContext sourceProductionContex
728728 }
729729 sourceProductionContext . AddSource ( "ConsoleApp.Builder.Help.g.cs" , help . ToString ( ) ) ;
730730 }
731- }
731+ }
You can’t perform that action at this time.
0 commit comments