// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Management.Automation; using Microsoft.PowerShell.Commands.Internal.Format; namespace Microsoft.PowerShell.Commands { /// /// Implementation for the format-default command. /// [Cmdlet(VerbsCommon.Format, "Default")] public class FormatDefaultCommand : FrontEndCommandBase { /// /// Constructor to set the inner command. /// public FormatDefaultCommand() { this.implementation = new InnerFormatShapeCommand(FormatShape.Undefined); } } }