Skip to content

Commit 7cf52a5

Browse files
committed
Run/RunAsync templates adds (Delegate command) dummy method
1 parent 0a14ede commit 7cf52a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ConsoleAppFramework/ConsoleAppBaseCode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public static Action<string> LogError
235235
/// ConsoleApp.Run(args, Foo);<br/>
236236
/// ConsoleApp.Run(args, &amp;Foo);<br/>
237237
/// </summary>
238-
public static void Run(string[] args)
238+
public static void Run(string[] args, Delegate command)
239239
{
240240
}
241241
@@ -245,7 +245,7 @@ public static void Run(string[] args)
245245
/// ConsoleApp.RunAsync(args, Foo);<br/>
246246
/// ConsoleApp.RunAsync(args, &amp;Foo);<br/>
247247
/// </summary>
248-
public static Task RunAsync(string[] args)
248+
public static Task RunAsync(string[] args, Delegate command)
249249
{
250250
return Task.CompletedTask;
251251
}

0 commit comments

Comments
 (0)