diff --git a/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs b/src/PowershellModule/Git/Commands/GetGitRepoRegistrationCommand.cs similarity index 72% rename from src/PowershellModule/Git/Commands/GetGitRepoCommand.cs rename to src/PowershellModule/Git/Commands/GetGitRepoRegistrationCommand.cs index a719fc5..c343c22 100644 --- a/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs +++ b/src/PowershellModule/Git/Commands/GetGitRepoRegistrationCommand.cs @@ -4,9 +4,9 @@ using ModuleCore.Git.Models; namespace PowershellModule.Git.Commands; -[Cmdlet(VerbsCommon.Get, GitCommands.GitRepoNoun)] +[Cmdlet(VerbsCommon.Get, GitCommands.GitRepoRegistrationNoun)] [OutputType(typeof(GitRegistration))] -public class GetGitRepoCommand : PSCmdlet +public class GetGitRepoRegistrationCommand : PSCmdlet { protected override void BeginProcessing() { diff --git a/src/PowershellModule/Git/Commands/GitCommands.cs b/src/PowershellModule/Git/Commands/GitCommands.cs index 2d5c888..8dc36f6 100644 --- a/src/PowershellModule/Git/Commands/GitCommands.cs +++ b/src/PowershellModule/Git/Commands/GitCommands.cs @@ -2,5 +2,5 @@ public class GitCommands { - public const string GitRepoNoun = "GitRepo"; + public const string GitRepoRegistrationNoun = "GitRepoRegistration"; } \ No newline at end of file diff --git a/src/PowershellModule/Git/Commands/NewGitRepoCommand.cs b/src/PowershellModule/Git/Commands/NewGitRepoRegistrationCommand.cs similarity index 84% rename from src/PowershellModule/Git/Commands/NewGitRepoCommand.cs rename to src/PowershellModule/Git/Commands/NewGitRepoRegistrationCommand.cs index 15678f9..1f968aa 100644 --- a/src/PowershellModule/Git/Commands/NewGitRepoCommand.cs +++ b/src/PowershellModule/Git/Commands/NewGitRepoRegistrationCommand.cs @@ -4,8 +4,8 @@ using ModuleCore.Git; namespace PowershellModule.Git.Commands; -[Cmdlet(VerbsCommon.New, GitCommands.GitRepoNoun)] -public sealed class NewGitRepoCommand : PSCmdlet +[Cmdlet(VerbsCommon.New, GitCommands.GitRepoRegistrationNoun)] +public sealed class NewGitRepoRegistrationCommand : PSCmdlet { [Parameter( Position = 0, diff --git a/src/PowershellModule/Git/Commands/RemoveGitRepoCommand.cs b/src/PowershellModule/Git/Commands/RemoveGitRepoRegistrationCommand.cs similarity index 87% rename from src/PowershellModule/Git/Commands/RemoveGitRepoCommand.cs rename to src/PowershellModule/Git/Commands/RemoveGitRepoRegistrationCommand.cs index f7c73a3..fc30cb8 100644 --- a/src/PowershellModule/Git/Commands/RemoveGitRepoCommand.cs +++ b/src/PowershellModule/Git/Commands/RemoveGitRepoRegistrationCommand.cs @@ -4,8 +4,8 @@ using ModuleCore.Git; namespace PowershellModule.Git.Commands; -[Cmdlet(VerbsCommon.Remove, GitCommands.GitRepoNoun)] -public class RemoveGitRepoCommand : PSCmdlet +[Cmdlet(VerbsCommon.Remove, GitCommands.GitRepoRegistrationNoun)] +public class RemoveGitRepoRegistrationCommand : PSCmdlet { [Parameter( Position = 0, diff --git a/src/PowershellModule/Git/Commands/ShowGitRepoCommand.cs b/src/PowershellModule/Git/Commands/ShowGitRepoRegistrationCommand.cs similarity index 91% rename from src/PowershellModule/Git/Commands/ShowGitRepoCommand.cs rename to src/PowershellModule/Git/Commands/ShowGitRepoRegistrationCommand.cs index 8a805e1..56a64ba 100644 --- a/src/PowershellModule/Git/Commands/ShowGitRepoCommand.cs +++ b/src/PowershellModule/Git/Commands/ShowGitRepoRegistrationCommand.cs @@ -3,8 +3,8 @@ using ModuleCore.Git; namespace PowershellModule.Git.Commands; -[Cmdlet(VerbsCommon.Show, GitCommands.GitRepoNoun)] -public class ShowGitRepoCommand : PSCmdlet +[Cmdlet(VerbsCommon.Show, GitCommands.GitRepoRegistrationNoun)] +public class ShowGitRepoRegistrationCommand : PSCmdlet { [Parameter( Position = 0,