Sep.Git.Tfs.Commands.CleanupWorkspaces.Run C# (CSharp) Method

Run() public method

public Run ( ) : int
return int
        public int Run()
        {
            _cleanupOptions.Init();
            foreach (var remote in _globals.Repository.ReadAllTfsRemotes())
            {
                Cleanup(remote);
            }
            return GitTfsExitCodes.OK;
        }

Same methods

CleanupWorkspaces::Run ( IList remoteIds ) : int

Usage Example

コード例 #1
0
 public int Run()
 {
     return(Choose(_cleanupWorkspaces.Run()));
 }