restore loc strings, subcommand parsers into separate files
This commit is contained in:
parent
43c13f2f53
commit
daac945742
16 changed files with 269 additions and 175 deletions
|
@ -0,0 +1,14 @@
|
|||
using Microsoft.DotNet.Cli.CommandLine;
|
||||
using LocalizableStrings = Microsoft.DotNet.Tools.Remove.ProjectToProjectReference.LocalizableStrings;
|
||||
|
||||
namespace Microsoft.DotNet.Cli
|
||||
{
|
||||
internal static class RemovePackageParser
|
||||
{
|
||||
public static Command RemovePackage() =>
|
||||
Create.Command(
|
||||
"package",
|
||||
LocalizableStrings.AppFullName,
|
||||
CommonOptions.HelpOption());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue