From 337223a0574fe4f6038ca303789cf6fe22363e98 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Wed, 20 Oct 2021 11:52:32 -0500 Subject: [PATCH] Fix GetDependenciesCommand namespace missing --- UsmToolkit/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UsmToolkit/Program.cs b/UsmToolkit/Program.cs index c39f49e..16cf8e0 100644 --- a/UsmToolkit/Program.cs +++ b/UsmToolkit/Program.cs @@ -7,7 +7,7 @@ namespace UsmToolkit { [Command("UsmToolkit")] [VersionOptionFromMember("--version", MemberName = nameof(GetVersion))] - [Subcommand(typeof(ExtractCommand), typeof(ConvertCommand), typeof(GetDependenciesCommand))] + [Subcommand(typeof(ExtractCommand), typeof(ConvertCommand))] class Program { static int Main(string[] args)