mirror of
https://github.com/yaakov-h/Shamir.git
synced 2025-04-04 13:54:59 +00:00
42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
using System.Collections.Immutable;
|
|
using System.Threading.Tasks;
|
|
using CommandLine;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
|
using Shamir.Abstractions;
|
|
using Shamir.Commands.Azure;
|
|
using Shamir.Commands.Radio;
|
|
|
|
namespace Shamir.Console
|
|
{
|
|
public static class Program
|
|
{
|
|
public static async Task<int> Main(string[] args)
|
|
{
|
|
await using var serviceProvider = new ServiceCollection()
|
|
.AddTransient<Parser>(sp => new Parser(with =>
|
|
{
|
|
with.AutoHelp = true;
|
|
with.AutoVersion = true;
|
|
with.EnableDashDash = true;
|
|
with.IgnoreUnknownArguments = false;
|
|
}))
|
|
.AddAzureCommandTree()
|
|
.AddRadioCommandTree()
|
|
.BuildServiceProvider();
|
|
|
|
using var scope = serviceProvider.CreateScope();
|
|
|
|
var tree = new DefaultCommandTree(
|
|
"shamir",
|
|
"command-line multitool",
|
|
scope.ServiceProvider.GetServices<ICommandTree>().ToImmutableArray(),
|
|
scope.ServiceProvider.GetServices<ICommand>().ToImmutableArray()
|
|
);
|
|
|
|
var command = tree.FindCommand(args);
|
|
|
|
return await command.ExecuteAsync(scope.ServiceProvider);
|
|
}
|
|
}
|
|
}
|