3 implementations of ICommandDocument
dotnet (2)
Commands\Test\MTP\MicrosoftTestingPlatformTestCommand.cs (1)
13
internal partial class MicrosoftTestingPlatformTestCommand : Command, ICustomHelp,
ICommandDocument
DocumentedCommand.cs (1)
11
public class DocumentedCommand(string name, string docsLink, string description = null) : Command(name, description),
ICommandDocument
Microsoft.TemplateEngine.Cli (1)
Commands\NewCommand.cs (1)
11
internal partial class NewCommand : BaseCommand<NewCommandArgs>, ICustomHelp,
ICommandDocument
1 reference to ICommandDocument
dotnet (1)
Commands\Help\HelpCommand.cs (1)
109
if (parsedCommand?.CommandResult?.Command is
ICommandDocument
dc)