From 5f04ed4262235d9f07af627f99b2ad0da058e59d Mon Sep 17 00:00:00 2001 From: Scott Date: Tue, 25 Aug 2026 14:54:31 +1000 Subject: [PATCH] feat(git-provider): Set OutputType for GetGitRepoCommand --- src/PowershellModule/Git/Commands/GetGitRepoCommand.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs b/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs index 206f40d..a719fc5 100644 --- a/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs +++ b/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs @@ -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()