We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2ee8aa commit 31eebd1Copy full SHA for 31eebd1
ConsoleAppTemplate/ConsoleAppTemplate/Program.cs
@@ -28,6 +28,8 @@ namespace ConsoleAppTemplate
28
)
29
]
30
[Subcommand(typeof(SampleCommand))]
31
+ // TODO Add additional sub commands here
32
+ //[Subcommand(typeof(<your type>))]
33
internal class Program
34
{
35
private static async Task<int> Main(string[] args)
@@ -54,7 +56,7 @@ private static async Task<int> Main(string[] args)
54
56
})
55
57
58
// Configure dependency injection
- .ConfigureServices((_, serviceCollection) =>
59
+ .ConfigureServices((context, serviceCollection) =>
60
61
serviceCollection
62
.AddSingleton<IReporter, ConsoleReporter>()
0 commit comments