functions/azdo/_RemoveExtraMembers.ps1
# <copyright file="_RemoveExtraMembers.ps1" company="Endjin Limited"> # Copyright (c) Endjin Limited. All rights reserved. # </copyright> <# .SYNOPSIS Removes existing members of an Azure DevOps project group who are not in the configured set. .DESCRIPTION Removes existing members of an Azure DevOps project group who are not in the configured set. #> function _RemoveExtraMembers { [CmdletBinding()] param() } |