Refactored Generation command name.
This commit is contained in:
@@ -7,12 +7,12 @@ using System.Resources.NetStandard;
|
||||
|
||||
namespace DotNetResxUtils.Commands
|
||||
{
|
||||
internal class GenerationCommand : Command
|
||||
internal class Generate : Command
|
||||
{
|
||||
const string NAME = "generate";
|
||||
const string DESC = "Generate a .resx file.";
|
||||
|
||||
public GenerationCommand() : base(NAME, DESC)
|
||||
public Generate() : base(NAME, DESC)
|
||||
{
|
||||
Argument<FileInfo> destArg = new Argument<FileInfo>("destination", "The destination path to store this file. If no extension is given, .resx will automatically be concatenated.");
|
||||
Add(destArg);
|
Reference in New Issue
Block a user