Skip to content

Commit 31eebd1

Browse files
Added TODO to program.cs
1 parent d2ee8aa commit 31eebd1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ConsoleAppTemplate/ConsoleAppTemplate/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ namespace ConsoleAppTemplate
2828
)
2929
]
3030
[Subcommand(typeof(SampleCommand))]
31+
// TODO Add additional sub commands here
32+
//[Subcommand(typeof(<your type>))]
3133
internal class Program
3234
{
3335
private static async Task<int> Main(string[] args)
@@ -54,7 +56,7 @@ private static async Task<int> Main(string[] args)
5456
})
5557

5658
// Configure dependency injection
57-
.ConfigureServices((_, serviceCollection) =>
59+
.ConfigureServices((context, serviceCollection) =>
5860
{
5961
serviceCollection
6062
.AddSingleton<IReporter, ConsoleReporter>()

0 commit comments

Comments
 (0)