feat: Add GitRepoRegistration cmdlets #5

Merged
pascal_nulah merged 69 commits from feature/git-provider into dev 2026-09-06 09:33:36 +10:00
Showing only changes of commit 5f04ed4262 - Show all commits

feat(git-provider): Set OutputType for GetGitRepoCommand

Scott 2026-08-25 14:54:31 +10:00

View file

@ -1,9 +1,11 @@
using System.Management.Automation;
using ModuleCore.Git;
using ModuleCore.Git.Models;
namespace PowershellModule.Git.Commands;
[Cmdlet(VerbsCommon.Get, GitCommands.GitRepoNoun)]
[OutputType(typeof(GitRegistration))]
public class GetGitRepoCommand : PSCmdlet
{
protected override void BeginProcessing()