Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/Azure.Mcp.Core/src/Commands/CommandFactory.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

using System.CommandLine.Help;
using System.Diagnostics;
using System.Net;
using System.Reflection;
Expand Down Expand Up @@ -242,6 +243,7 @@ private RootCommand CreateRootCommand()
{
ConfigureCommands(subGroup);
root.Subcommands.Add(subGroup.Command);
subGroup.Command.Options.Add(new HelpOption());
}

return root;
Expand Down
Loading